Add event exclusion data to ltt_ust_event structure
authorJP Ikaheimonen <jp_ikaheimonen@mentor.com>
Mon, 4 Nov 2013 12:52:25 +0000 (14:52 +0200)
committerDavid Goulet <dgoulet@efficios.com>
Thu, 14 Nov 2013 18:40:57 +0000 (13:40 -0500)
Add event exclusion data to ltt_ust_event and ltt_ust_ht_key.

src/bin/lttng-sessiond/trace-ust.h

index f25573a80d8015e5ca69280a1419d0a256d0acc7..06d0202d1d1fdb323f94baafd8577c8e58714f29 100644 (file)
@@ -34,6 +34,7 @@ struct ltt_ust_ht_key {
        const char *name;
        const struct lttng_filter_bytecode *filter;
        enum lttng_ust_loglevel_type loglevel;
        const char *name;
        const struct lttng_filter_bytecode *filter;
        enum lttng_ust_loglevel_type loglevel;
+       const struct lttng_event_exclusion *exclusion;
 };
 
 /* Context hash table nodes */
 };
 
 /* Context hash table nodes */
@@ -49,6 +50,7 @@ struct ltt_ust_event {
        struct lttng_ust_event attr;
        struct lttng_ht_node_str node;
        struct lttng_ust_filter_bytecode *filter;
        struct lttng_ust_event attr;
        struct lttng_ht_node_str node;
        struct lttng_ust_filter_bytecode *filter;
+       const struct lttng_event_exclusion *exclusion;
 };
 
 /* UST channel */
 };
 
 /* UST channel */
This page took 0.025161 seconds and 4 git commands to generate.