Fix: Add missing fct prototypes when disabling UST
authorDavid Goulet <dgoulet@efficios.com>
Wed, 28 Nov 2012 16:05:09 +0000 (11:05 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 28 Nov 2012 16:05:09 +0000 (11:05 -0500)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/bin/lttng-sessiond/trace-ust.h

index 07b4b6829b76f1978f405cc42c31e8c28d7e3387..4004f9af2c5d3573a4de417b9cd7b6bbf5191c57 100644 (file)
@@ -171,6 +171,16 @@ void trace_ust_destroy_event(struct ltt_ust_event *event);
 
 #else /* HAVE_LIBLTTNG_UST_CTL */
 
 
 #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)
 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;
 }
 {
        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 */
 
 
 #endif /* HAVE_LIBLTTNG_UST_CTL */
 
This page took 0.025567 seconds and 4 git commands to generate.