lib: rename "begin" to "beginning" when used as a noun
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index 67ed5f5b43a49a0e01d03d7e0338776287bbb00e..537beca612e99f1c5c99077253991f9054e0e46c 100644 (file)
@@ -1,9 +1,7 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_STREAM_H
+#define BABELTRACE_GRAPH_NOTIFICATION_STREAM_H
 
 /*
- * BabelTrace - Plug-in Stream-related Notifications
- *
  * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
  * SOFTWARE.
  */
 
-#include <babeltrace/graph/notification.h>
-#include <babeltrace/ctf-ir/stream.h>
+#include <stdint.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-extern struct bt_notification *bt_notification_stream_begin_create(
-               struct bt_ctf_stream *stream);
+struct bt_notification;
+struct bt_self_notification_iterator;
+struct bt_stream;
+
+extern
+struct bt_notification *bt_notification_stream_beginning_create(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_stream *stream);
 
-extern struct bt_notification *bt_notification_stream_end_create(
-               struct bt_ctf_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_ctf_stream *bt_notification_stream_begin_get_stream(
+extern struct bt_stream *bt_notification_stream_beginning_borrow_stream(
                struct bt_notification *notification);
 
-extern struct bt_ctf_stream *bt_notification_stream_end_get_stream(
+extern void bt_notification_stream_beginning_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
+
+extern struct bt_stream *bt_notification_stream_end_borrow_stream(
                struct bt_notification *notification);
 
+extern void bt_notification_stream_end_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_STREAM_H */
This page took 0.024003 seconds and 4 git commands to generate.