X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=f4244fdefae8196a2dadfc092e844dc90a626f05;hb=6a00837f8cb0431a2ad90974d67fae138ea97dd5;hp=b21d8c2a712bad7e2622b033e2761651905d2182;hpb=dec56f6cc894de41b312354d360b6a4c09fc199d;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index b21d8c2a7..f4244fdef 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -79,7 +79,7 @@ struct ltt_ust_domain_global { /* UST session */ struct ltt_ust_session { - int id; /* Unique identifier of session */ + uint64_t id; /* Unique identifier of session */ int start_trace; struct ltt_ust_domain_global domain_global; /* UID/GID of the user owning the session */ @@ -105,6 +105,10 @@ struct ltt_ust_session { uint64_t next_channel_id; /* Once this value reaches UINT32_MAX, no more id can be allocated. */ uint64_t used_channel_id; + /* Tell or not if the session has to output the traces. */ + unsigned int output_traces; + unsigned int snapshot_mode; + unsigned int has_non_default_channel; }; /* @@ -153,13 +157,15 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, /* * Create functions malloc() the data structure. */ -struct ltt_ust_session *trace_ust_create_session(unsigned int session_id); +struct ltt_ust_session *trace_ust_create_session(uint64_t session_id); struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr); struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, struct lttng_filter_bytecode *filter); struct ltt_ust_metadata *trace_ust_create_metadata(char *path); struct ltt_ust_context *trace_ust_create_context( struct lttng_event_context *ctx); +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel); /* * Destroy functions free() the data structure and remove from linked list if @@ -241,6 +247,12 @@ static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, { return NULL; } +static inline +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel) +{ + return; +} #endif /* HAVE_LIBLTTNG_UST_CTL */