From: JP Ikaheimonen Date: Thu, 14 Nov 2013 07:19:35 +0000 (+0200) Subject: Add ust event exclusion UST ABI to internal copy X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=18e46d40ce9c365faa644c72a015d9dae8437443 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 --- 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)