X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=9d2b4571a7e04290b1c90af4d7e93827ba912e2e;hp=f4244fdefae8196a2dadfc092e844dc90a626f05;hb=561c68970ca461ccf8451aee47efc29da20ad8f1;hpb=850767541647c102a299d7fbc39c97555ac70224 diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index f4244fdef..9d2b4571a 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -27,18 +27,21 @@ #include #include "consumer.h" +#include "jul.h" #include "ust-ctl.h" struct ltt_ust_ht_key { const char *name; const struct lttng_filter_bytecode *filter; enum lttng_ust_loglevel_type loglevel; + const struct lttng_event_exclusion *exclusion; }; /* Context hash table nodes */ struct ltt_ust_context { struct lttng_ust_context ctx; struct lttng_ht_node_ulong node; + struct cds_list_head list; }; /* UST event */ @@ -47,6 +50,7 @@ struct ltt_ust_event { struct lttng_ust_event attr; struct lttng_ht_node_str node; struct lttng_ust_filter_bytecode *filter; + const struct lttng_event_exclusion *exclusion; }; /* UST channel */ @@ -56,6 +60,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; @@ -82,6 +87,7 @@ struct ltt_ust_session { uint64_t id; /* Unique identifier of session */ int start_trace; struct ltt_ust_domain_global domain_global; + struct jul_domain domain_jul; /* UID/GID of the user owning the session */ uid_t uid; gid_t gid; @@ -109,6 +115,7 @@ struct ltt_ust_session { unsigned int output_traces; unsigned int snapshot_mode; unsigned int has_non_default_channel; + unsigned int live_timer_interval; /* usec */ }; /* @@ -160,7 +167,8 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, 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 lttng_filter_bytecode *filter, + struct lttng_event_exclusion *exclusion); struct ltt_ust_metadata *trace_ust_create_metadata(char *path); struct ltt_ust_context *trace_ust_create_context( struct lttng_event_context *ctx); @@ -207,7 +215,8 @@ struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr) } static inline struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, - struct lttng_filter_bytecode *filter) + struct lttng_filter_bytecode *filter, + struct lttng_event_exclusion *exclusion) { return NULL; }