X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=libust%2Fchannels.h;h=e7bc59fefb36be0e4b4c513077c19b5f7939651d;hb=8d6300d3b3cb0219e1109e931a2219dbd812b24d;hp=0d2715d17166fbabfa4768b9f2591214d0546239;hpb=b73a4c471dc987ea8548632dffb3c7050de77dd0;p=ust.git diff --git a/libust/channels.h b/libust/channels.h index 0d2715d..e7bc59f 100644 --- a/libust/channels.h +++ b/libust/channels.h @@ -23,9 +23,12 @@ #include #include +#include +#include -#include -#include +#define _LGPL_SOURCE +#include +#include #define EVENTS_PER_CHANNEL 65536 #define MAX_CPUS 32 @@ -40,6 +43,8 @@ struct ust_channel { int *buf_struct_shmids; struct ust_buffer **buf; int overwrite:1; + /* whether collection is requested upon trace start */ + int request_collection:1; int active:1; unsigned int n_subbufs_order; unsigned long commit_count_mask; /* @@ -50,7 +55,7 @@ struct ust_channel { */ /* End of first 32 bytes cacheline */ - struct kref kref; /* Channel transport reference count */ + struct urcu_ref urcu_ref; /* Channel transport reference count */ size_t subbuf_size; int subbuf_size_order; unsigned int subbuf_cnt; @@ -59,14 +64,14 @@ struct ust_channel { u32 version; size_t alloc_size; - struct list_head list; + struct cds_list_head list; } ____cacheline_aligned; struct ltt_channel_setting { unsigned int subbuf_size; unsigned int subbuf_cnt; - struct kref kref; /* Number of references to structure content */ - struct list_head list; + struct urcu_ref urcu_ref; /* Number of references to structure content */ + struct cds_list_head list; unsigned int index; /* index of channel in trace channel array */ u16 free_event_id; /* Next event ID to allocate */ char name[PATH_MAX]; @@ -81,9 +86,13 @@ extern const char *ltt_channels_get_name_from_index(unsigned int index); extern int ltt_channels_get_index_from_name(const char *name); extern struct ust_channel *ltt_channels_trace_alloc(unsigned int *nr_channels, int overwrite, + int request_collection, int active); extern void ltt_channels_trace_free(struct ust_channel *channels); extern int _ltt_channels_get_event_id(const char *channel, const char *name); extern int ltt_channels_get_event_id(const char *channel, const char *name); +extern int ust_channels_overwrite_by_default; +extern int ust_channels_request_collection_by_default; + #endif /* UST_CHANNELS_H */