Add ust event exclusion UST ABI to internal copy
authorJP Ikaheimonen <jp_ikaheimonen@mentor.com>
Thu, 14 Nov 2013 07:19:35 +0000 (09:19 +0200)
committerDavid Goulet <dgoulet@efficios.com>
Thu, 14 Nov 2013 18:40:58 +0000 (13:40 -0500)
Add definition of structure lttng_ust_event_exclusion to our
internal copy of UST ABI definitions

src/bin/lttng-sessiond/lttng-ust-abi.h

index 98470e4d16a86d9d2324ce26c8408627c4bb6be3..a3298caa2778435ca34cdec4ab508e940694346b 100644 (file)
@@ -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)
This page took 0.030438 seconds and 5 git commands to generate.