lib: update copyrights
[babeltrace.git] / include / babeltrace / graph / notification-inactivity.h
index 34099731c2189a68a062893a102c77e834ece99a..ce26bd6285e6f531f329a868132632971d4bc18c 100644 (file)
@@ -2,7 +2,7 @@
 #define BABELTRACE_GRAPH_NOTIFICATION_INACTIVITY_H
 
 /*
- * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  * SOFTWARE.
  */
 
-/* For bt_get() */
-#include <babeltrace/ref.h>
+#include <stdint.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
-struct bt_clock_class_priority_map;
+struct bt_self_notification_iterator;
 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_notification *bt_notification_inactivity_create(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_clock_class *default_clock_class);
 
-extern struct bt_clock_class_priority_map *
-bt_notification_inactivity_borrow_clock_class_priority_map(
-               struct bt_notification *notification);
-
-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 struct bt_clock_value *bt_notification_inactivity_borrow_clock_value(
-               struct bt_notification *notification,
-               struct bt_clock_class *clock_class);
-
-static inline
-struct bt_clock_value *bt_notification_inactivity_get_clock_value(
-               struct bt_notification *notification,
-               struct bt_clock_class *clock_class)
-{
-       return bt_get(bt_notification_inactivity_borrow_clock_value(
-               notification, clock_class));
-}
-
-extern int bt_notification_inactivity_set_clock_value(
-               struct bt_notification *notification,
-               struct bt_clock_value *clock_value);
+extern void bt_notification_inactivity_set_default_clock_value(
+               struct bt_notification *notif, uint64_t raw_value);
 
 #ifdef __cplusplus
 }
This page took 0.025669 seconds and 4 git commands to generate.