X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-kernel.h;h=5879ca281be62b29b490d54e86426066934bed83;hb=0f3d405741c89373f9eb51969f5cf9fccc5ce10d;hp=9d50f4c79f86dd40a30f674c6cce8b5a6a35451b;hpb=00a620843422e5c972aee0ada2181b811fc81b92;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/trace-kernel.h b/src/bin/lttng-sessiond/trace-kernel.h index 9d50f4c79..5879ca281 100644 --- a/src/bin/lttng-sessiond/trace-kernel.h +++ b/src/bin/lttng-sessiond/trace-kernel.h @@ -64,6 +64,7 @@ struct ltt_kernel_channel { int enabled; unsigned int stream_count; unsigned int event_count; + bool published_to_notification_thread; struct cds_list_head ctx_list; struct lttng_channel *channel; struct ltt_kernel_event_list events_list; @@ -71,6 +72,7 @@ struct ltt_kernel_channel { struct cds_list_head list; /* Session pointer which has a reference to this object. */ struct ltt_kernel_session *session; + bool sent_to_consumer; }; /* Metadata */ @@ -84,6 +86,7 @@ struct ltt_kernel_stream { int fd; int state; int cpu; + bool sent_to_consumer; /* Format is %s_%d respectively channel name and CPU number. */ char name[DEFAULT_STREAM_NAME_LEN]; uint64_t tracefile_size; @@ -103,14 +106,7 @@ struct ltt_kernel_session { /* UID/GID of the user owning the session */ uid_t uid; gid_t gid; - /* - * Two consumer_output object are needed where one is needed for the - * current output object and the second one is the temporary object used to - * store URI being set by the lttng_set_consumer_uri call. Once - * lttng_enable_consumer is called, the two pointers are swapped. - */ struct consumer_output *consumer; - struct consumer_output *tmp_consumer; /* Tracing session id */ uint64_t id; /* Session is active or not meaning it has been started or stopped. */