Rename bt_ctf_X -> bt_X, maintain backward compat. for pre-2.0 CTF writer
[babeltrace.git] / include / babeltrace / graph / notification-stream-internal.h
index b170e4e61375d106de77cc95b99538faa3af1f3c..df1b3dcb3a565d95fd516450b27a9c0bad7d8f11 100644 (file)
 
 struct bt_notification_stream_begin {
        struct bt_notification parent;
-       struct bt_ctf_stream *stream;
+       struct bt_stream *stream;
 };
 
 struct bt_notification_stream_end {
        struct bt_notification parent;
-       struct bt_ctf_stream *stream;
+       struct bt_stream *stream;
 };
 
 static inline
-struct bt_ctf_stream *bt_notification_stream_begin_borrow_stream(
+struct bt_stream *bt_notification_stream_begin_borrow_stream(
                struct bt_notification *notif)
 {
        struct bt_notification_stream_begin *notif_stream_begin =
@@ -54,7 +54,7 @@ struct bt_ctf_stream *bt_notification_stream_begin_borrow_stream(
 }
 
 static inline
-struct bt_ctf_stream *bt_notification_stream_end_borrow_stream(
+struct bt_stream *bt_notification_stream_end_borrow_stream(
                struct bt_notification *notif)
 {
        struct bt_notification_stream_end *notif_stream_end =
This page took 0.025367 seconds and 4 git commands to generate.