From: JP Ikaheimonen Date: Mon, 4 Nov 2013 14:10:51 +0000 (+0200) Subject: Add exclusion data to ust_app_event structure X-Git-Tag: v2.4.0-rc1~30 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=0c53bbada6234c946dcacf5cc3b9c7c0ab070810;ds=sidebyside Add exclusion data to ust_app_event structure Add exclusion data to ust_app_event and ust_app_ht_key data structures. --- diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index 680ab6f2f..252255710 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -50,6 +50,7 @@ struct ust_app_ht_key { const char *name; const struct lttng_ust_filter_bytecode *filter; enum lttng_ust_loglevel_type loglevel; + const struct lttng_ust_event_exclusion *exclusion; }; /* @@ -115,6 +116,7 @@ struct ust_app_event { char name[LTTNG_UST_SYM_NAME_LEN]; struct lttng_ht_node_str node; struct lttng_ust_filter_bytecode *filter; + struct lttng_ust_event_exclusion *exclusion; }; struct ust_app_stream {