X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fnotification-inactivity.h;h=ee9937ab640750ea836c2bd5efc447030989a92f;hb=c8db321922f3730c70628a5e452baf8a046e70fd;hp=c530660c013d43ba7b79f3f20ae36dc4220c6393;hpb=5c5632787fc9cafa602c89a28966bcfd01ec0204;p=babeltrace.git diff --git a/include/babeltrace/graph/notification-inactivity.h b/include/babeltrace/graph/notification-inactivity.h index c530660c..ee9937ab 100644 --- a/include/babeltrace/graph/notification-inactivity.h +++ b/include/babeltrace/graph/notification-inactivity.h @@ -2,7 +2,7 @@ #define BABELTRACE_GRAPH_NOTIFICATION_INACTIVITY_H /* - * Copyright 2017 Philippe Proulx + * Copyright 2017-2018 Philippe Proulx * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -23,39 +23,22 @@ * SOFTWARE. */ -/* For bt_get() */ -#include +/* For bt_self_notification_iterator, bt_notification, bt_clock_class */ +#include + +#include #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_graph *graph, - struct bt_clock_class_priority_map *clock_class_priority_map); - -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)); -} +bt_notification *bt_notification_inactivity_create( + bt_self_notification_iterator *notification_iterator, + bt_clock_class *default_clock_class); -extern struct bt_clock_value *bt_notification_inactivity_borrow_clock_value( - struct bt_notification *notification, - struct bt_clock_class *clock_class); +extern void bt_notification_inactivity_set_default_clock_value( + bt_notification *notif, uint64_t raw_value); #ifdef __cplusplus }