lib: use object pool for event and packet notifications
[babeltrace.git] / include / babeltrace / graph / notification-inactivity.h
index 44dade896ad7a66e1af69bb65a5c697f4345f0d8..c530660c013d43ba7b79f3f20ae36dc4220c6393 100644 (file)
@@ -23,6 +23,9 @@
  * SOFTWARE.
  */
 
+/* For bt_get() */
+#include <babeltrace/ref.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -31,20 +34,28 @@ struct bt_notification;
 struct bt_clock_class_priority_map;
 struct bt_clock_class;
 
-extern struct bt_notification *bt_notification_inactivity_create(
+extern
+struct bt_notification *bt_notification_inactivity_create(
+               struct bt_graph *graph,
                struct bt_clock_class_priority_map *clock_class_priority_map);
 
 extern struct bt_clock_class_priority_map *
-bt_notification_inactivity_get_clock_class_priority_map(
+bt_notification_inactivity_borrow_clock_class_priority_map(
                struct bt_notification *notification);
 
-extern struct bt_clock_value *bt_notification_inactivity_get_clock_value(
-               struct bt_notification *notification,
-               struct bt_clock_class *clock_class);
+static inline
+struct bt_clock_class_priority_map *
+bt_notification_inactivity_get_clock_class_priority_map(
+               struct bt_notification *notification)
+{
+       return bt_get(
+               bt_notification_inactivity_borrow_clock_class_priority_map(
+                       notification));
+}
 
-extern int bt_notification_inactivity_set_clock_value(
+extern struct bt_clock_value *bt_notification_inactivity_borrow_clock_value(
                struct bt_notification *notification,
-               struct bt_clock_value *clock_value);
+               struct bt_clock_class *clock_class);
 
 #ifdef __cplusplus
 }
This page took 0.024542 seconds and 4 git commands to generate.