Fix: Conditionally disable test requiring shared libs
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.h
index 6b507ed99f9a9fa1f2640f0d7a06f25315fd46ee..812c98df4e7f4ad42516a4050a9aa88f737de608 100644 (file)
@@ -61,6 +61,7 @@ void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
 extern int lttng_ustctl_get_mmap_read_offset(
                struct lttng_ust_shm_handle *handle,
                struct lttng_ust_lib_ring_buffer *buf, unsigned long *off);
+int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream);
 
 #else /* HAVE_LIBLTTNG_UST_CTL */
 
@@ -151,6 +152,11 @@ int lttng_ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
 {
        return -ENOSYS;
 }
+static inline
+int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
+{
+       return -ENOSYS;
+}
 #endif /* HAVE_LIBLTTNG_UST_CTL */
 
 #endif /* _LTTNG_USTCONSUMER_H */
This page took 0.023454 seconds and 4 git commands to generate.