Use bytecode seqnum to force the evaluation ordering of capture bytecode
[lttng-tools.git] / src / common / event-rule / kprobe.c
index 15dabdde3d0ceca5e8f334c20255ba1132999d83..12e6010ac1f25723caa73b72e74cf5d0f27df32f 100644 (file)
@@ -163,18 +163,20 @@ static const char *lttng_event_rule_kprobe_get_filter(
        return NULL;
 }
 
-static const struct lttng_filter_bytecode *
+static const struct lttng_bytecode *
 lttng_event_rule_kprobe_get_filter_bytecode(const struct lttng_event_rule *rule)
 {
        /* Not supported. */
        return NULL;
 }
 
-static struct lttng_event_exclusion *
-lttng_event_rule_kprobe_generate_exclusions(const struct lttng_event_rule *rule)
+static enum lttng_event_rule_generate_exclusions_status
+lttng_event_rule_kprobe_generate_exclusions(const struct lttng_event_rule *rule,
+               struct lttng_event_exclusion **exclusions)
 {
        /* Not supported. */
-       return NULL;
+       *exclusions = NULL;
+       return LTTNG_EVENT_RULE_GENERATE_EXCLUSIONS_STATUS_NONE;
 }
 
 static unsigned long
@@ -193,7 +195,7 @@ lttng_event_rule_kprobe_hash(
        return hash;
 }
 
-struct lttng_event_rule *lttng_event_rule_kprobe_create()
+struct lttng_event_rule *lttng_event_rule_kprobe_create(void)
 {
        struct lttng_event_rule *rule = NULL;
        struct lttng_event_rule_kprobe *krule;
This page took 0.025181 seconds and 5 git commands to generate.