lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index bdcf4c96011157d9530c6bce81f9b1c439a51861..ac9ee65b2e007236ff073a23530893fca14e01d8 100644 (file)
@@ -1,13 +1,10 @@
-#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 2017-2018 Philippe Proulx <pproulx@efficios.com>
  * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  * in the Software without restriction, including without limitation the rights
  * SOFTWARE.
  */
 
-#include <babeltrace/graph/notification.h>
-#include <babeltrace/ctf-ir/stream.h>
+/* For bt_notification, bt_self_notification_iterator, bt_stream */
+#include <babeltrace/types.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-/*** BT_NOTIFICATION_TYPE_STREAM_END ***/
-struct bt_notification *bt_notification_stream_end_create(
-               struct bt_ctf_stream *stream);
-struct bt_ctf_stream *bt_notification_stream_end_get_stream(
-               struct bt_notification *notification);
+extern
+bt_notification *bt_notification_stream_beginning_create(
+               bt_self_notification_iterator *notification_iterator,
+               bt_stream *stream);
+
+extern
+bt_notification *bt_notification_stream_end_create(
+               bt_self_notification_iterator *notification_iterator,
+               bt_stream *stream);
+
+extern bt_stream *bt_notification_stream_beginning_borrow_stream(
+               bt_notification *notification);
+
+extern void bt_notification_stream_beginning_set_default_clock_value(
+               bt_notification *notif, uint64_t value_cycles);
+
+extern bt_stream *bt_notification_stream_end_borrow_stream(
+               bt_notification *notification);
+
+extern void bt_notification_stream_end_set_default_clock_value(
+               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.024498 seconds and 4 git commands to generate.