From: David Goulet Date: Wed, 28 Nov 2012 16:05:09 +0000 (-0500) Subject: Fix: Add missing fct prototypes when disabling UST X-Git-Tag: v2.1.0-rc9~5 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=37a86c61f06aa7eeba59374e4404f1b64c7c709c;ds=sidebyside Fix: Add missing fct prototypes when disabling UST Signed-off-by: David Goulet --- 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 */