X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fgraph%2Fnotification%2Fstream.c;h=a1ce7a5aa995f1ebf98ead1048b0efe2e4b97c18;hb=5c5632787fc9cafa602c89a28966bcfd01ec0204;hp=8f35e3c631d849488c0b487290314344ea1cceb0;hpb=312c056ae3d374b253fa0cfe5ed576c0b0e5e569;p=babeltrace.git diff --git a/lib/graph/notification/stream.c b/lib/graph/notification/stream.c index 8f35e3c6..a1ce7a5a 100644 --- a/lib/graph/notification/stream.c +++ b/lib/graph/notification/stream.c @@ -49,7 +49,7 @@ void bt_notification_stream_end_destroy(struct bt_object *obj) } struct bt_notification *bt_notification_stream_end_create( - struct bt_stream *stream) + struct bt_graph *graph, struct bt_stream *stream) { struct bt_notification_stream_end *notification; struct bt_stream_class *stream_class; @@ -73,7 +73,7 @@ struct bt_notification *bt_notification_stream_end_create( bt_notification_init(¬ification->parent, BT_NOTIFICATION_TYPE_STREAM_END, - bt_notification_stream_end_destroy); + bt_notification_stream_end_destroy, NULL); notification->stream = bt_get(stream); BT_LOGD("Created stream end notification object: " "stream-addr=%p, stream-name=\"%s\", " @@ -115,7 +115,7 @@ void bt_notification_stream_begin_destroy(struct bt_object *obj) } struct bt_notification *bt_notification_stream_begin_create( - struct bt_stream *stream) + struct bt_graph *graph, struct bt_stream *stream) { struct bt_notification_stream_begin *notification; struct bt_stream_class *stream_class; @@ -139,7 +139,7 @@ struct bt_notification *bt_notification_stream_begin_create( bt_notification_init(¬ification->parent, BT_NOTIFICATION_TYPE_STREAM_BEGIN, - bt_notification_stream_begin_destroy); + bt_notification_stream_begin_destroy, NULL); notification->stream = bt_get(stream); BT_LOGD("Created stream beginning notification object: " "stream-addr=%p, stream-name=\"%s\", "