X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fgraph%2Fnotification%2Fpacket.c;h=8e02201d4539038b5a995da8557ebe6a8dcae6d7;hb=108b91d0ffd01cce874850b767c0f358eb642523;hp=316eb61380a2a2486b01fb01986440f9ad8a3b02;hpb=c5a24b0a349d9a435ba5382f852c514817da4fff;p=babeltrace.git diff --git a/lib/graph/notification/packet.c b/lib/graph/notification/packet.c index 316eb613..8e02201d 100644 --- a/lib/graph/notification/packet.c +++ b/lib/graph/notification/packet.c @@ -28,13 +28,14 @@ #include #include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include +#include #include #include #include @@ -65,12 +66,15 @@ end: } struct bt_notification *bt_notification_packet_begin_create( - struct bt_graph *graph, struct bt_packet *packet) + struct bt_private_connection_private_notification_iterator *notif_iter, + struct bt_packet *packet) { - struct bt_notification_packet_begin *notification; + struct bt_notification_packet_begin *notification = NULL; struct bt_stream *stream; struct bt_stream_class *stream_class; + struct bt_graph *graph; + BT_ASSERT_PRE_NON_NULL(notif_iter, "Notification iterator"); BT_ASSERT_PRE_NON_NULL(packet, "Packet"); stream = bt_packet_borrow_stream(packet); BT_ASSERT(stream); @@ -84,6 +88,8 @@ struct bt_notification *bt_notification_packet_begin_create( stream_class, bt_stream_class_get_name(stream_class), bt_stream_class_get_id(stream_class)); + graph = bt_private_connection_private_notification_iterator_borrow_graph( + notif_iter); notification = (void *) bt_notification_create_from_pool( &graph->packet_begin_notif_pool, graph); if (!notification) { @@ -95,6 +101,7 @@ struct bt_notification *bt_notification_packet_begin_create( notification->packet = packet; bt_object_get_no_null_check_no_parent_check( ¬ification->packet->base); + bt_packet_set_is_frozen(packet, true); BT_LOGD("Created packet beginning notification object: " "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", " "stream-class-addr=%p, stream-class-name=\"%s\", " @@ -180,12 +187,15 @@ end: } struct bt_notification *bt_notification_packet_end_create( - struct bt_graph *graph, struct bt_packet *packet) + struct bt_private_connection_private_notification_iterator *notif_iter, + struct bt_packet *packet) { - struct bt_notification_packet_end *notification; + struct bt_notification_packet_end *notification = NULL; struct bt_stream *stream; struct bt_stream_class *stream_class; + struct bt_graph *graph; + BT_ASSERT_PRE_NON_NULL(notif_iter, "Notification iterator"); BT_ASSERT_PRE_NON_NULL(packet, "Packet"); stream = bt_packet_borrow_stream(packet); BT_ASSERT(stream); @@ -199,6 +209,8 @@ struct bt_notification *bt_notification_packet_end_create( stream_class, bt_stream_class_get_name(stream_class), bt_stream_class_get_id(stream_class)); + graph = bt_private_connection_private_notification_iterator_borrow_graph( + notif_iter); notification = (void *) bt_notification_create_from_pool( &graph->packet_end_notif_pool, graph); if (!notification) { @@ -210,6 +222,7 @@ struct bt_notification *bt_notification_packet_end_create( notification->packet = packet; bt_object_get_no_null_check_no_parent_check( ¬ification->packet->base); + bt_packet_set_is_frozen(packet, true); BT_LOGD("Created packet end notification object: " "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", " "stream-class-addr=%p, stream-class-name=\"%s\", "