lib: rename "begin" to "beginning" when used as a noun
[babeltrace.git] / plugins / ctf / fs-sink / writer.c
index 0142ed6d9868b316f1f580ba20dc64fc7806d9b4..7ff4584010f2759ad2da32043b0f01065a8049d9 100644 (file)
@@ -111,7 +111,7 @@ end:
 static
 enum bt_component_status handle_notification(
                struct writer_component *writer_component,
-               struct bt_notification *notification)
+               const struct bt_notification *notification)
 {
        enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
 
@@ -121,10 +121,10 @@ enum bt_component_status handle_notification(
        }
 
        switch (bt_notification_get_type(notification)) {
-       case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
+       case BT_NOTIFICATION_TYPE_PACKET_BEGINNING:
        {
-               struct bt_packet *packet =
-                       bt_notification_packet_begin_get_packet(notification);
+               const struct bt_packet *packet =
+                       bt_notification_packet_beginning_get_packet(notification);
 
                if (!packet) {
                        ret = BT_COMPONENT_STATUS_ERROR;
@@ -137,7 +137,7 @@ enum bt_component_status handle_notification(
        }
        case BT_NOTIFICATION_TYPE_PACKET_END:
        {
-               struct bt_packet *packet =
+               const struct bt_packet *packet =
                        bt_notification_packet_end_get_packet(notification);
 
                if (!packet) {
@@ -150,7 +150,7 @@ enum bt_component_status handle_notification(
        }
        case BT_NOTIFICATION_TYPE_EVENT:
        {
-               struct bt_event *event = bt_notification_event_get_event(
+               const struct bt_event *event = bt_notification_event_get_event(
                                notification);
 
                if (!event) {
@@ -164,10 +164,10 @@ enum bt_component_status handle_notification(
                }
                break;
        }
-       case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
+       case BT_NOTIFICATION_TYPE_STREAM_BEGINNING:
        {
-               struct bt_stream *stream =
-                       bt_notification_stream_begin_get_stream(notification);
+               const struct bt_stream *stream =
+                       bt_notification_stream_beginning_get_stream(notification);
 
                if (!stream) {
                        ret = BT_COMPONENT_STATUS_ERROR;
@@ -179,7 +179,7 @@ enum bt_component_status handle_notification(
        }
        case BT_NOTIFICATION_TYPE_STREAM_END:
        {
-               struct bt_stream *stream =
+               const struct bt_stream *stream =
                        bt_notification_stream_end_get_stream(notification);
 
                if (!stream) {
@@ -201,7 +201,7 @@ BT_HIDDEN
 void writer_component_port_connected(
                struct bt_self_component *component,
                struct bt_private_port *self_port,
-               struct bt_port *other_port)
+               const struct bt_port *other_port)
 {
        struct bt_private_connection *connection;
        struct writer_component *writer;
@@ -225,7 +225,7 @@ BT_HIDDEN
 enum bt_component_status writer_run(struct bt_self_component *component)
 {
        enum bt_component_status ret;
-       struct bt_notification *notification = NULL;
+       const struct bt_notification *notification = NULL;
        struct bt_notification_iterator *it;
        struct writer_component *writer_component =
                bt_self_component_get_user_data(component);
This page took 0.024502 seconds and 4 git commands to generate.