Add internal kernel channel destroy function
[lttng-tools.git] / src / bin / lttng-sessiond / trace-kernel.h
index 96a3664b4158d8a78f13053bfe75ab7a83d9272b..8bd1ffe321b1075460ba53ef5bf3de79b69d92f9 100644 (file)
@@ -46,11 +46,6 @@ struct ltt_kernel_channel_list {
 struct ltt_kernel_event {
        int fd;
        int enabled;
-       /*
-        * TODO: need internal representation to support more than a
-        * single context.
-        */
-       struct lttng_kernel_context *ctx;
        struct lttng_kernel_event *event;
        struct cds_list_head list;
 };
@@ -70,6 +65,8 @@ struct ltt_kernel_channel {
        struct ltt_kernel_event_list events_list;
        struct ltt_kernel_stream_list stream_list;
        struct cds_list_head list;
+       /* Session pointer which has a reference to this object. */
+       struct ltt_kernel_session *session;
 };
 
 /* Metadata */
@@ -110,6 +107,8 @@ struct ltt_kernel_session {
        struct consumer_output *tmp_consumer;
        /* Tracing session id */
        unsigned int id;
+       /* Session is started and active */
+       unsigned int started;
 };
 
 /*
This page took 0.023744 seconds and 4 git commands to generate.