Fix: send per-pid session id in channel creation
[lttng-tools.git] / src / bin / lttng-sessiond / trace-kernel.h
index 87807d989c12645946b03c4b9d01fb0feb7b42d5..21ffd336d51b90b77f0c31b36ab8105e2f4b5b10 100644 (file)
@@ -94,7 +94,6 @@ struct ltt_kernel_session {
        int consumer_fds_sent;
        unsigned int channel_count;
        unsigned int stream_count_global;
-       char *trace_path;
        struct ltt_kernel_metadata *metadata;
        struct ltt_kernel_channel_list channel_list;
        /* UID/GID of the user owning the session */
@@ -112,6 +111,8 @@ struct ltt_kernel_session {
        unsigned int id;
        /* Session is started and active */
        unsigned int started;
+       /* Tell or not if the session has to output the traces. */
+       unsigned int output_traces;
 };
 
 /*
@@ -125,7 +126,7 @@ struct ltt_kernel_channel *trace_kernel_get_channel_by_name(
 /*
  * Create functions malloc() the data structure.
  */
-struct ltt_kernel_session *trace_kernel_create_session(char *path);
+struct ltt_kernel_session *trace_kernel_create_session(void);
 struct ltt_kernel_channel *trace_kernel_create_channel(
                struct lttng_channel *chan);
 struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev);
This page took 0.024573 seconds and 4 git commands to generate.