Rename liblttngctl.h to lttng.h
[lttng-tools.git] / ltt-sessiond / session.h
index 72183ef4b66d0396505ed6373aeb29b0999b5a57..4f58e9d9f77210b83c5622f72073673d10aa0454 100644 (file)
@@ -19,6 +19,9 @@
 #ifndef _LTT_SESSION_H
 #define _LTT_SESSION_H
 
+#include <lttng/lttng.h>
+#include <uuid/uuid.h>
+
 /* Global session list */
 struct ltt_session_list {
        struct cds_list_head head;
@@ -32,9 +35,11 @@ struct ltt_session {
        struct cds_list_head list;
        uuid_t uuid;
        struct cds_list_head ust_traces;
-       struct cds_list_head lttng_traces;
+       struct cds_list_head kernel_traces;
+       unsigned int ust_trace_count;
+       unsigned int kern_trace_count;
        pid_t ust_consumer;
-       pid_t lttng_consumer;
+       pid_t kernel_consumer;
 };
 
 /* Prototypes */
This page took 0.024654 seconds and 4 git commands to generate.