Fix: destroy default created channel if add-context fails
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.h
index b21d8c2a712bad7e2622b033e2761651905d2182..dcb45c2373d802fa92d04adbedd393d3d310b6ad 100644 (file)
@@ -160,6 +160,8 @@ struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
 struct ltt_ust_metadata *trace_ust_create_metadata(char *path);
 struct ltt_ust_context *trace_ust_create_context(
                struct lttng_event_context *ctx);
+void trace_ust_delete_channel(struct lttng_ht *ht,
+               struct ltt_ust_channel *channel);
 
 /*
  * Destroy functions free() the data structure and remove from linked list if
@@ -241,6 +243,12 @@ static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht,
 {
        return NULL;
 }
+static inline
+void trace_ust_delete_channel(struct lttng_ht *ht,
+               struct ltt_ust_channel *channel)
+{
+       return;
+}
 
 #endif /* HAVE_LIBLTTNG_UST_CTL */
 
This page took 0.02489 seconds and 4 git commands to generate.