Fix: check if event enabled for bytecode-less events
[lttng-ust.git] / include / lttng / ust-abi.h
index 6fa9a94db0472154679bcc1af5ab9d0630d5a1db..1c6946f8715f4a92ad6d27746a2024ade822661f 100644 (file)
@@ -173,9 +173,12 @@ struct lttng_ust_calibrate {
 };
 
 #define FILTER_BYTECODE_MAX_LEN                65536
+#define LTTNG_UST_FILTER_PADDING       32
 struct lttng_ust_filter_bytecode {
        uint32_t len;
        uint32_t reloc_offset;
+       uint64_t seqnum;
+       char padding[LTTNG_UST_FILTER_PADDING];
        char data[0];
 };
 
This page took 0.024479 seconds and 4 git commands to generate.