SoW-2019-0002: Dynamic Snapshot
[deliverable/lttng-modules.git] / lib / ringbuffer / iterator.h
index 6c59360c275de480e96c3637a72ac2613c96080b..2c945b8200e08a555e906dbb888741fa345ff3b7 100644 (file)
 extern ssize_t lib_ring_buffer_get_next_record(struct channel *chan,
                                               struct lib_ring_buffer *buf);
 
+/*
+ * Ensure that the current subbuffer is put after client code has read the
+ * payload of the current record. Has an effect when the end of subbuffer is
+ * reached. It is not required if get_next_record is called successively.
+ * However, it should be invoked before returning data to user-space to ensure
+ * that the get/put subbuffer state is quiescent.
+ */
+extern void lib_ring_buffer_put_current_record(struct lib_ring_buffer *buf);
+
 /*
  * channel_get_next_record advances the buffer read position to the next record.
  * It returns either the size of the next record, -EAGAIN if there is currently
This page took 0.024326 seconds and 5 git commands to generate.