lib: add "borrow" functions where "get" functions exist
[babeltrace.git] / include / babeltrace / graph / notification-discarded-packets.h
index 4fc6a4b44e0adb73502b5569504392650aae3ab5..1627f2490068f7952daa3f62a5d35de39d6ee00e 100644 (file)
@@ -23,6 +23,9 @@
  * SOFTWARE.
  */
 
+/* For bt_get() */
+#include <babeltrace/ref.h>
+
 #include <stdint.h>
 
 #ifdef __cplusplus
@@ -35,19 +38,46 @@ struct bt_clock_class;
 struct bt_stream;
 
 extern struct bt_clock_value *
-bt_notification_discarded_packets_get_begin_clock_value(
+bt_notification_discarded_packets_borrow_begin_clock_value(
                struct bt_notification *notification);
 
+static inline
+struct bt_clock_value *
+bt_notification_discarded_packets_get_begin_clock_value(
+               struct bt_notification *notification)
+{
+       return bt_get(
+               bt_notification_discarded_packets_borrow_begin_clock_value(
+                       notification));
+}
+
 extern struct bt_clock_value *
-bt_notification_discarded_packets_get_end_clock_value(
+bt_notification_discarded_packets_borrow_end_clock_value(
                struct bt_notification *notification);
 
+static inline
+struct bt_clock_value *
+bt_notification_discarded_packets_get_end_clock_value(
+               struct bt_notification *notification)
+{
+       return bt_get(bt_notification_discarded_packets_borrow_end_clock_value(
+               notification));
+}
+
 extern int64_t bt_notification_discarded_packets_get_count(
                struct bt_notification *notification);
 
-extern struct bt_stream *bt_notification_discarded_packets_get_stream(
+extern struct bt_stream *bt_notification_discarded_packets_borrow_stream(
                struct bt_notification *notification);
 
+static inline
+struct bt_stream *bt_notification_discarded_packets_get_stream(
+               struct bt_notification *notification)
+{
+       return bt_get(bt_notification_discarded_packets_borrow_stream(
+               notification));
+}
+
 #ifdef __cplusplus
 }
 #endif
This page took 0.02397 seconds and 4 git commands to generate.