X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Findex-allocator.h;h=93ab5ddd5e1483cd268e1129d5565c5d70cdb1e6;hb=3afa94aeca5a0daae40fd7b6cc96b7e4c150c7d8;hp=9dbd745e6bdaf52ef1ccebae2dffd7c3b1308e82;hpb=7966af5763c4aaca39df9bbfa9277ff15715c720;p=lttng-tools.git diff --git a/src/common/index-allocator.h b/src/common/index-allocator.h index 9dbd745e6..93ab5ddd5 100644 --- a/src/common/index-allocator.h +++ b/src/common/index-allocator.h @@ -9,6 +9,7 @@ #define _COMMON_INDEX_ALLOCATOR_H #include +#include #ifdef __cplusplus extern "C" { @@ -25,19 +26,19 @@ enum lttng_index_allocator_status { /* * Create an index allocator of `index_count` slots. */ -struct lttng_index_allocator *lttng_index_allocator_create( +LTTNG_EXPORT struct lttng_index_allocator *lttng_index_allocator_create( uint64_t index_count); /* * Get the number of indexes currently in use. */ -uint64_t lttng_index_allocator_get_index_count( +LTTNG_EXPORT uint64_t lttng_index_allocator_get_index_count( struct lttng_index_allocator *allocator); /* * Allocate (i.e. reserve) a slot. */ -enum lttng_index_allocator_status lttng_index_allocator_alloc( +LTTNG_EXPORT enum lttng_index_allocator_status lttng_index_allocator_alloc( struct lttng_index_allocator *allocator, uint64_t *index); @@ -45,13 +46,13 @@ enum lttng_index_allocator_status lttng_index_allocator_alloc( * Release a slot by index. The slot will be re-used by the index allocator * in future 'alloc' calls. */ -enum lttng_index_allocator_status lttng_index_allocator_release( +LTTNG_EXPORT enum lttng_index_allocator_status lttng_index_allocator_release( struct lttng_index_allocator *allocator, uint64_t index); /* * Destroy an index allocator. */ -void lttng_index_allocator_destroy(struct lttng_index_allocator *allocator); +LTTNG_EXPORT void lttng_index_allocator_destroy(struct lttng_index_allocator *allocator); #ifdef __cplusplus }