lib: remove clock class priority map, use default clock value
[babeltrace.git] / include / babeltrace / graph / notification-inactivity.h
index 9ddf51daf3e27d8cbcdd6435e632f68e58f0fd10..e246618799c971a638eeac5c532fda86fa707ec1 100644 (file)
  * SOFTWARE.
  */
 
+#include <stdint.h>
+
+/* For bt_bool */
+#include <babeltrace/types.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
-struct bt_clock_class_priority_map;
-struct bt_ctf_clock_class;
-
-extern struct bt_notification *bt_notification_inactivity_create(
-               struct bt_clock_class_priority_map *clock_class_priority_map);
+struct bt_clock_value;
+struct bt_clock_class;
 
-extern struct bt_clock_class_priority_map *
-bt_notification_inactivity_get_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);
+extern
+struct bt_notification *bt_notification_inactivity_create(
+               struct bt_graph *graph);
 
 extern int bt_notification_inactivity_set_clock_value(
-               struct bt_notification *notification,
-               struct bt_ctf_clock_value *clock_value);
+               struct bt_notification *notif,
+               struct bt_clock_class *clock_class, uint64_t raw_value,
+               bt_bool is_default);
+
+extern struct bt_clock_value *bt_notification_inactivity_borrow_default_clock_value(
+               struct bt_notification *notif);
 
 #ifdef __cplusplus
 }
This page took 0.023826 seconds and 4 git commands to generate.