X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fgraph%2Fnotification%2Fdiscarded-packets.c;h=7cd85c13cb456e8daecf09d557c3c2e3c68dd475;hb=5fe68922cadda5c4f3de5b41190167cc490796f1;hp=5d9b0ec3feb47dd9a429005341091359864a90bc;hpb=abe30a8f5b3c86ae598ba18a8aa8e702f3aadf52;p=babeltrace.git diff --git a/lib/graph/notification/discarded-packets.c b/lib/graph/notification/discarded-packets.c index 5d9b0ec3..7cd85c13 100644 --- a/lib/graph/notification/discarded-packets.c +++ b/lib/graph/notification/discarded-packets.c @@ -26,18 +26,18 @@ #include struct bt_clock_value * -bt_notification_discarded_packets_get_begin_clock_value( +bt_notification_discarded_packets_borrow_begin_clock_value( struct bt_notification *notification) { - return bt_notification_discarded_elements_get_begin_clock_value( + return bt_notification_discarded_elements_borrow_begin_clock_value( BT_NOTIFICATION_TYPE_DISCARDED_PACKETS, notification); } struct bt_clock_value * -bt_notification_discarded_packets_get_end_clock_value( +bt_notification_discarded_packets_borrow_end_clock_value( struct bt_notification *notification) { - return bt_notification_discarded_elements_get_end_clock_value( + return bt_notification_discarded_elements_borrow_end_clock_value( BT_NOTIFICATION_TYPE_DISCARDED_PACKETS, notification); } @@ -48,9 +48,9 @@ int64_t bt_notification_discarded_packets_get_count( BT_NOTIFICATION_TYPE_DISCARDED_PACKETS, notification); } -struct bt_stream *bt_notification_discarded_packets_get_stream( +struct bt_stream *bt_notification_discarded_packets_borrow_stream( struct bt_notification *notification) { - return bt_notification_discarded_elements_get_stream( + return bt_notification_discarded_elements_borrow_stream( BT_NOTIFICATION_TYPE_DISCARDED_PACKETS, notification); }