lib: make graph API const-correct
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index 2dea094cf790135b9dc74cb7dd2fecf0d5f270de..2f98f82f00ae35df4b7fa4454fc8d6919030d248 100644 (file)
  * SOFTWARE.
  */
 
+#include <stdint.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
 struct bt_self_notification_iterator;
-struct bt_clock_value;
 struct bt_stream;
 
-extern const struct bt_stream *bt_notification_stream_begin_borrow_stream(
+extern
+struct bt_notification *bt_notification_stream_begin_create(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_stream *stream);
+
+extern
+struct bt_notification *bt_notification_stream_end_create(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_stream *stream);
+
+extern struct bt_stream *bt_notification_stream_begin_borrow_stream(
                struct bt_notification *notification);
 
-extern const struct bt_clock_value *
-bt_notification_stream_begin_borrow_default_clock_value(
-               struct bt_notification *notif);
+extern void bt_notification_stream_begin_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
 
-extern const struct bt_stream *bt_notification_stream_end_borrow_stream(
+extern struct bt_stream *bt_notification_stream_end_borrow_stream(
                struct bt_notification *notification);
 
-extern const struct bt_clock_value *
-bt_notification_stream_end_borrow_default_clock_value(
-               struct bt_notification *notif);
+extern void bt_notification_stream_end_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
 
 #ifdef __cplusplus
 }
This page took 0.024759 seconds and 4 git commands to generate.