From: JP Ikaheimonen Date: Mon, 4 Nov 2013 12:52:25 +0000 (+0200) Subject: Add event exclusion data to ltt_ust_event structure X-Git-Tag: v2.4.0-rc1~38 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=7724731bcd8d8e340adc41bc46a5994668679e85;ds=sidebyside Add event exclusion data to ltt_ust_event structure Add event exclusion data to ltt_ust_event and ltt_ust_ht_key. --- diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index f25573a80..06d0202d1 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -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 struct lttng_event_exclusion *exclusion; }; /* 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; + const struct lttng_event_exclusion *exclusion; }; /* UST channel */