Add filter sequence number to UST
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.h
index f8bcb3356fa7a3bc8010800737b83626157a62f0..b0a65cf191c5b9624d24e354b98d900c373ef7fe 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <lttng/lttng.h>
 #include <common/hashtable/hashtable.h>
+#include <common/defaults.h>
 
 #include "consumer.h"
 #include "ust-ctl.h"
@@ -46,6 +47,7 @@ struct ltt_ust_event {
        struct lttng_ust_event attr;
        struct lttng_ht *ctx;
        struct lttng_ht_node_str node;
+       struct lttng_ust_filter_bytecode *filter;
 };
 
 /* UST stream */
@@ -53,7 +55,7 @@ struct ltt_ust_stream {
        int handle;
        char pathname[PATH_MAX];
        /* Format is %s_%d respectively channel name and CPU number. */
-       char name[LTTNG_SYMBOL_NAME_LEN];
+       char name[DEFAULT_STREAM_NAME_LEN];
        struct lttng_ust_object_data *obj;
        /* Using a list of streams to keep order. */
        struct cds_list_head list;
@@ -122,6 +124,8 @@ struct ltt_ust_session {
         */
        struct consumer_output *consumer;
        struct consumer_output *tmp_consumer;
+       /* Sequence number for filters so the tracer knows the ordering. */
+       uint64_t filter_seq_num;
 };
 
 #ifdef HAVE_LIBLTTNG_UST_CTL
This page took 0.023202 seconds and 4 git commands to generate.