Implement LTTng-UST perf counters support
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.h
index bac5c328bf4f9169256d413723f0083144a6fc88..86f8d40b1de0d6d96850621bca1a2a6bcefb80b0 100644 (file)
@@ -169,6 +169,8 @@ struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
                struct lttng_event_exclusion *exclusion);
 struct ltt_ust_context *trace_ust_create_context(
                struct lttng_event_context *ctx);
+int trace_ust_match_context(struct ltt_ust_context *uctx,
+               struct lttng_event_context *ctx);
 void trace_ust_delete_channel(struct lttng_ht *ht,
                struct ltt_ust_channel *channel);
 
@@ -237,6 +239,12 @@ struct ltt_ust_context *trace_ust_create_context(
 {
        return NULL;
 }
+static inline
+int trace_ust_match_context(struct ltt_ust_context *uctx,
+               struct lttng_event_context *ctx)
+{
+       return 0;
+}
 static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht,
                char *name, struct lttng_filter_bytecode *filter, int loglevel,
                struct lttng_event_exclusion *exclusion)
This page took 0.023407 seconds and 4 git commands to generate.