X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fgraph%2Fnotification%2Finactivity.c;h=b6708d3b6ad5f4c74bbe11196449d05d636678cd;hb=5c5632787fc9cafa602c89a28966bcfd01ec0204;hp=2575c14432f829b7d290932d9be2dca4511821a1;hpb=312c056ae3d374b253fa0cfe5ed576c0b0e5e569;p=babeltrace.git diff --git a/lib/graph/notification/inactivity.c b/lib/graph/notification/inactivity.c index 2575c144..b6708d3b 100644 --- a/lib/graph/notification/inactivity.c +++ b/lib/graph/notification/inactivity.c @@ -52,6 +52,7 @@ void bt_notification_inactivity_destroy(struct bt_object *obj) } struct bt_notification *bt_notification_inactivity_create( + struct bt_graph *graph, struct bt_clock_class_priority_map *cc_prio_map) { struct bt_notification_inactivity *notification; @@ -79,7 +80,7 @@ struct bt_notification *bt_notification_inactivity_create( } bt_notification_init(¬ification->parent, BT_NOTIFICATION_TYPE_INACTIVITY, - bt_notification_inactivity_destroy); + bt_notification_inactivity_destroy, NULL); ret_notif = ¬ification->parent; notification->clock_values = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) bt_clock_value_recycle);