Make API CTF-agnostic
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index 963a95ce4c9fc0b7b87425b8934b8b7b337fea87..18b10b9eb7f0d4a6618a52279d22e92cc3b3ddee 100644 (file)
@@ -40,18 +40,19 @@ extern "C" {
 #endif
 
 struct bt_notification;
+struct bt_private_connection_private_notification_iterator;
 struct bt_clock_class;
 struct bt_clock_value;
 struct bt_stream;
 
 extern
 struct bt_notification *bt_notification_stream_begin_create(
-               struct bt_graph *graph,
+               struct bt_private_connection_private_notification_iterator *notification_iterator,
                struct bt_stream *stream);
 
 extern
 struct bt_notification *bt_notification_stream_end_create(
-               struct bt_graph *graph,
+               struct bt_private_connection_private_notification_iterator *notification_iterator,
                struct bt_stream *stream);
 
 extern struct bt_stream *bt_notification_stream_begin_borrow_stream(
@@ -64,10 +65,8 @@ struct bt_stream *bt_notification_stream_begin_get_stream(
        return bt_get(bt_notification_stream_begin_borrow_stream(notification));
 }
 
-extern int bt_notification_stream_begin_set_clock_value(
-               struct bt_notification *notif,
-               struct bt_clock_class *clock_class, uint64_t raw_value,
-               bt_bool is_default);
+extern int bt_notification_stream_begin_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
 
 extern struct bt_clock_value *bt_notification_stream_begin_borrow_default_clock_value(
                struct bt_notification *notif);
@@ -82,10 +81,8 @@ struct bt_stream *bt_notification_stream_end_get_stream(
        return bt_get(bt_notification_stream_end_borrow_stream(notification));
 }
 
-extern int bt_notification_stream_end_set_clock_value(
-               struct bt_notification *notif,
-               struct bt_clock_class *clock_class, uint64_t raw_value,
-               bt_bool is_default);
+extern int bt_notification_stream_end_set_default_clock_value(
+               struct bt_notification *notif, uint64_t value_cycles);
 
 extern struct bt_clock_value *bt_notification_stream_end_borrow_default_clock_value(
                struct bt_notification *notif);
This page took 0.026026 seconds and 4 git commands to generate.