From 37a86c61f06aa7eeba59374e4404f1b64c7c709c Mon Sep 17 00:00:00 2001 From: David Goulet Date: Wed, 28 Nov 2012 11:05:09 -0500 Subject: [PATCH] Fix: Add missing fct prototypes when disabling UST Signed-off-by: David Goulet --- src/bin/lttng-sessiond/trace-ust.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index 07b4b6829..4004f9af2 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -171,6 +171,16 @@ void trace_ust_destroy_event(struct ltt_ust_event *event); #else /* HAVE_LIBLTTNG_UST_CTL */ +static inline int trace_ust_ht_match_event(struct cds_lfht_node *node, + const void *_key) +{ + return 0; +} +static inline int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node, + const void *_key) +{ + return 0; +} static inline struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, char *name) @@ -227,6 +237,11 @@ struct ltt_ust_context *trace_ust_create_context( { return NULL; } +static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, + char *name, struct lttng_filter_bytecode *filter, int loglevel) +{ + return NULL; +} #endif /* HAVE_LIBLTTNG_UST_CTL */ -- 2.34.1