X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng-sessiond%2Ftrace-ust.h;h=9235ca62c837e261e682b671a6a9e7262ea5fb84;hp=aea7e714f03b27b2909c29b225012d3774e19397;hb=3735745270b83fc911d8ee39c8437256b3af4e3d;hpb=322585731ced1adba36cddcb8bdd5d997d1b2e3e diff --git a/lttng-sessiond/trace-ust.h b/lttng-sessiond/trace-ust.h index aea7e714f..9235ca62c 100644 --- a/lttng-sessiond/trace-ust.h +++ b/lttng-sessiond/trace-ust.h @@ -43,6 +43,7 @@ struct ltt_ust_context { /* UST event */ struct ltt_ust_event { + unsigned int enabled; struct lttng_ust_event attr; struct cds_lfht *ctx; struct cds_lfht_node node; @@ -53,11 +54,13 @@ struct ltt_ust_stream { int handle; char pathname[PATH_MAX]; struct lttng_ust_object_data *obj; - struct cds_lfht_node node; + /* Using a list of streams to keep order. */ + struct cds_list_head list; }; /* UST channel */ struct ltt_ust_channel { + unsigned int enabled; char name[LTTNG_UST_SYM_NAME_LEN]; char pathname[PATH_MAX]; struct lttng_ust_channel attr; @@ -99,6 +102,7 @@ struct ltt_ust_session { int uid; /* Unique identifier of session */ int consumer_fds_sent; int consumer_fd; + int start_trace; char pathname[PATH_MAX]; struct ltt_ust_domain_global domain_global; /* @@ -110,7 +114,7 @@ struct ltt_ust_session { struct cds_lfht *domain_exec; }; -#ifdef CONFIG_LTTNG_TOOLS_HAVE_UST +#ifdef HAVE_LIBLTTNG_UST_CTL /* * Lookup functions. NULL is returned if not found. @@ -139,7 +143,7 @@ void trace_ust_destroy_metadata(struct ltt_ust_metadata *metadata); void trace_ust_destroy_channel(struct ltt_ust_channel *channel); void trace_ust_destroy_event(struct ltt_ust_event *event); -#else +#else /* HAVE_LIBLTTNG_UST_CTL */ static inline struct ltt_ust_event *trace_ust_find_event_by_name(struct cds_lfht *ht, @@ -198,6 +202,6 @@ void trace_ust_destroy_event(struct ltt_ust_event *event) { } -#endif /* CONFIG_CONFIG_LTTNG_TOOLS_HAVE_UST */ +#endif /* HAVE_LIBLTTNG_UST_CTL */ #endif /* _LTT_TRACE_UST_H */