X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=1c37b3f0f1bb977a49429f31f2ce9f47a7f74e2b;hb=9d5b2fc0e9759ad89c5f0551dfe64fabd07afbfb;hp=03f37abaa6900723422fca8762bf5ea893d020a7;hpb=2bba9e532ca1910822005ff7f67400a2e871467c;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index 03f37abaa..1c37b3f0f 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -39,6 +39,7 @@ struct ltt_ust_ht_key { struct ltt_ust_context { struct lttng_ust_context ctx; struct lttng_ht_node_ulong node; + struct cds_list_head list; }; /* UST event */ @@ -56,6 +57,7 @@ struct ltt_ust_channel { char name[LTTNG_UST_SYM_NAME_LEN]; struct lttng_ust_channel_attr attr; struct lttng_ht *ctx; + struct cds_list_head ctx_list; struct lttng_ht *events; struct lttng_ht_node_str node; uint64_t tracefile_size; @@ -79,7 +81,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 */ @@ -107,6 +109,8 @@ struct ltt_ust_session { 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; }; /* @@ -155,7 +159,7 @@ 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);