RCU support for consumer's hash tables
[lttng-tools.git] / include / lttng / lttng-ustconsumer.h
index 0d77a893954a4aa2c3ee01d8291a86dec6a96991..217c592d7c9adebaa22892d38c3a20e7b171586c 100644 (file)
@@ -24,7 +24,7 @@
 #include <lttng/lttng-consumer.h>
 #include <errno.h>
 
-#ifdef CONFIG_LTTNG_TOOLS_HAVE_UST
+#ifdef HAVE_LIBLTTNG_UST_CTL
 
 /*
  * Mmap the ring buffer, read it and write the data to the tracefile.
@@ -66,8 +66,13 @@ extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan);
 extern int lttng_ustconsumer_allocate_stream(struct lttng_consumer_stream *stream);
 extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream);
 
+int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
+               struct lttng_consumer_local_data *ctx);
+int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream);
 
-#else /* CONFIG_LTTNG_TOOLS_HAVE_UST */
+void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
+
+#else /* HAVE_LIBLTTNG_UST_CTL */
 
 static inline
 int lttng_ustconsumer_on_read_subbuffer_mmap(
@@ -103,7 +108,10 @@ int lttng_ustconsumer_get_produced_snapshot(
 
 static inline
 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
-               int sock, struct pollfd *consumer_sockpoll);
+               int sock, struct pollfd *consumer_sockpoll)
+{
+       return -ENOSYS;
+}
 
 static inline
 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
@@ -127,6 +135,24 @@ void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
 {
 }
 
-#endif /* CONFIG_LTTNG_TOOLS_HAVE_UST */
+static inline
+int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
+               struct lttng_consumer_local_data *ctx)
+{
+       return -ENOSYS;
+}
+
+static inline
+int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
+{
+       return -ENOSYS;
+}
+
+static inline
+void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
+{
+}
+
+#endif /* HAVE_LIBLTTNG_UST_CTL */
 
 #endif /* _LTTNG_USTCONSUMER_H */
This page took 0.024406 seconds and 4 git commands to generate.