Add `interpreter_funcs` to `lttng_bytecode_runtime`
[lttng-ust.git] / include / lttng / ust-events.h
index ae5ce5f636b9a5f91e56069e5166ce80bc029b35..41164ac348eb1edf14e83960f07027205cb037ca 100644 (file)
@@ -443,8 +443,10 @@ enum lttng_bytecode_interpreter_ret {
 struct lttng_bytecode_runtime {
        /* Associated bytecode */
        struct lttng_ust_bytecode_node *bc;
-       uint64_t (*filter)(void *interpreter_data,
-                       const char *interpreter_stack_data);
+       union {
+               uint64_t (*filter)(void *interpreter_data,
+                               const char *interpreter_stack_data);
+       } interpreter_funcs;
        int link_failed;
        struct cds_list_head node;      /* list of bytecode runtime in event */
        /*
This page took 0.0228 seconds and 4 git commands to generate.