X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=include%2Fbabeltrace%2Fgraph%2Fnotification-discarded-elements-internal.h;h=131050d140be7be3461b0a14e61bb815eae56109;hb=50842bdc4c21f3de2b63e29cdac730af8b6dcca6;hp=1a339ab0c9123ec3c8a3b1078651a9c141efe222;hpb=6606e9c14a9fc2c1b3edd81cb52c5bb15f07f855;p=babeltrace.git diff --git a/include/babeltrace/graph/notification-discarded-elements-internal.h b/include/babeltrace/graph/notification-discarded-elements-internal.h index 1a339ab0..131050d1 100644 --- a/include/babeltrace/graph/notification-discarded-elements-internal.h +++ b/include/babeltrace/graph/notification-discarded-elements-internal.h @@ -30,37 +30,37 @@ #include 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;