From 0c53bbada6234c946dcacf5cc3b9c7c0ab070810 Mon Sep 17 00:00:00 2001 From: JP Ikaheimonen Date: Mon, 4 Nov 2013 16:10:51 +0200 Subject: [PATCH] Add exclusion data to ust_app_event structure Add exclusion data to ust_app_event and ust_app_ht_key data structures. --- src/bin/lttng-sessiond/ust-app.h | 2 ++ 1 file changed, 2 insertions(+) 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 { -- 2.34.1