From 18e46d40ce9c365faa644c72a015d9dae8437443 Mon Sep 17 00:00:00 2001 From: JP Ikaheimonen Date: Thu, 14 Nov 2013 09:19:35 +0200 Subject: [PATCH] Add ust event exclusion UST ABI to internal copy Add definition of structure lttng_ust_event_exclusion to our internal copy of UST ABI definitions --- src/bin/lttng-sessiond/lttng-ust-abi.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/lttng-sessiond/lttng-ust-abi.h b/src/bin/lttng-sessiond/lttng-ust-abi.h index 98470e4d1..a3298caa2 100644 --- a/src/bin/lttng-sessiond/lttng-ust-abi.h +++ b/src/bin/lttng-sessiond/lttng-ust-abi.h @@ -230,6 +230,13 @@ struct lttng_ust_filter_bytecode { char data[0]; } LTTNG_PACKED; +#define LTTNG_UST_EXCLUSION_PADDING 32 +struct lttng_ust_event_exclusion { + uint32_t count; + char padding[LTTNG_UST_EXCLUSION_PADDING]; + char names[LTTNG_UST_SYM_NAME_LEN][0]; +} LTTNG_PACKED; + #define _UST_CMD(minor) (minor) #define _UST_CMDR(minor, type) (minor) #define _UST_CMDW(minor, type) (minor) -- 2.34.1