lib: add internal object pool API and use it; adapt plugins/tests
[babeltrace.git] / include / babeltrace / graph / notification-inactivity.h
index e5914935310f59784314165c3403573ece1923ae..93be8b1243c73903feeba34abda7530fb8a9d431 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_INACTIVITY_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_INACTIVITY_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_INACTIVITY_H
+#define BABELTRACE_GRAPH_NOTIFICATION_INACTIVITY_H
 
 /*
  * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
  * SOFTWARE.
  */
 
+/* For bt_get() */
+#include <babeltrace/ref.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
 struct bt_clock_class_priority_map;
+struct bt_clock_class;
 
 extern struct bt_notification *bt_notification_inactivity_create(
                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_ctf_clock_value *bt_notification_inactivity_get_clock_value(
-               struct bt_notification *notification,
-               struct bt_ctf_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_ctf_clock_value *clock_value);
+               struct bt_clock_class *clock_class);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_INACTIVITY_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_INACTIVITY_H */
This page took 0.024662 seconds and 4 git commands to generate.