Rename bt_ctf_X -> bt_X, maintain backward compat. for pre-2.0 CTF writer
[babeltrace.git] / include / babeltrace / graph / notification-discarded-elements-internal.h
index 1a339ab0c9123ec3c8a3b1078651a9c141efe222..131050d140be7be3461b0a14e61bb815eae56109 100644 (file)
 #include <babeltrace/graph/notification-internal.h>
 
 struct bt_clock_class_priority_map;
-struct bt_ctf_stream;
+struct bt_stream;
 
 struct bt_notification_discarded_elements {
        struct bt_notification parent;
-       struct bt_ctf_stream *stream;
-       struct bt_ctf_clock_value *begin_clock_value;
-       struct bt_ctf_clock_value *end_clock_value;
+       struct bt_stream *stream;
+       struct bt_clock_value *begin_clock_value;
+       struct bt_clock_value *end_clock_value;
        int64_t count;
 };
 
 BT_HIDDEN
 struct bt_notification *bt_notification_discarded_elements_create(
                enum bt_notification_type type,
-               struct bt_ctf_stream *stream,
-               struct bt_ctf_clock_value *begin_clock_value,
-               struct bt_ctf_clock_value *end_clock_value,
+               struct bt_stream *stream,
+               struct bt_clock_value *begin_clock_value,
+               struct bt_clock_value *end_clock_value,
                uint64_t count);
 
 BT_HIDDEN
-struct bt_ctf_stream *bt_notification_discarded_elements_get_stream(
+struct bt_stream *bt_notification_discarded_elements_get_stream(
                enum bt_notification_type type,
                struct bt_notification *notification);
 
 BT_HIDDEN
-struct bt_ctf_clock_value *
+struct bt_clock_value *
 bt_notification_discarded_elements_get_begin_clock_value(
                enum bt_notification_type type,
                struct bt_notification *notification);
 
 BT_HIDDEN
-struct bt_ctf_clock_value *
+struct bt_clock_value *
 bt_notification_discarded_elements_get_end_clock_value(
                enum bt_notification_type type,
                struct bt_notification *notification);
@@ -71,7 +71,7 @@ int64_t bt_notification_discarded_elements_get_count(
                struct bt_notification *notification);
 
 static inline
-struct bt_ctf_stream *bt_notification_discarded_elements_borrow_stream(
+struct bt_stream *bt_notification_discarded_elements_borrow_stream(
                struct bt_notification *notification)
 {
        struct bt_notification_discarded_elements *discarded_elems_notif;
This page took 0.024443 seconds and 4 git commands to generate.