lib: rename "begin" to "beginning" when used as a noun
[babeltrace.git] / plugins / lttng-utils / plugin.c
index 7d24bf5666ddd03b223bf26e14e9ceb267a1c39d..e3ebc514f712b4812ef138195cf049b23e4bcb44 100644 (file)
@@ -105,18 +105,18 @@ void debug_info_iterator_destroy(struct bt_self_notification_iterator *it)
 }
 
 static
-struct bt_notification *handle_notification(FILE *err,
+const struct bt_notification *handle_notification(FILE *err,
                struct debug_info_iterator *debug_it,
-               struct bt_notification *notification)
+               const struct bt_notification *notification)
 {
-       struct bt_notification *new_notification = NULL;
+       const struct bt_notification *new_notification = NULL;
 
        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);
-               struct bt_packet *writer_packet;
+               const struct bt_packet *packet =
+                       bt_notification_packet_beginning_get_packet(notification);
+               const struct bt_packet *writer_packet;
 
                if (!packet) {
                        goto end;
@@ -124,7 +124,7 @@ struct bt_notification *handle_notification(FILE *err,
 
                writer_packet = debug_info_new_packet(debug_it, packet);
                BT_ASSERT(writer_packet);
-               new_notification = bt_notification_packet_begin_create(
+               new_notification = bt_notification_packet_beginning_create(
                                writer_packet);
                BT_ASSERT(new_notification);
                bt_object_put_ref(packet);
@@ -133,9 +133,9 @@ struct bt_notification *handle_notification(FILE *err,
        }
        case BT_NOTIFICATION_TYPE_PACKET_END:
        {
-               struct bt_packet *packet =
+               const struct bt_packet *packet =
                        bt_notification_packet_end_get_packet(notification);
-               struct bt_packet *writer_packet;
+               const struct bt_packet *writer_packet;
 
                if (!packet) {
                        goto end;
@@ -152,9 +152,9 @@ struct bt_notification *handle_notification(FILE *err,
        }
        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);
-               struct bt_event *writer_event;
+               const struct bt_event *writer_event;
                struct bt_clock_class_priority_map *cc_prio_map =
                        bt_notification_event_get_clock_class_priority_map(
                                        notification);
@@ -172,11 +172,11 @@ struct bt_notification *handle_notification(FILE *err,
                bt_object_put_ref(writer_event);
                break;
        }
-       case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
+       case BT_NOTIFICATION_TYPE_STREAM_BEGINNING:
        {
-               struct bt_stream *stream =
-                       bt_notification_stream_begin_get_stream(notification);
-               struct bt_stream *writer_stream;
+               const struct bt_stream *stream =
+                       bt_notification_stream_beginning_get_stream(notification);
+               const struct bt_stream *writer_stream;
 
                if (!stream) {
                        goto end;
@@ -184,7 +184,7 @@ struct bt_notification *handle_notification(FILE *err,
 
                writer_stream = debug_info_stream_begin(debug_it, stream);
                BT_ASSERT(writer_stream);
-               new_notification = bt_notification_stream_begin_create(
+               new_notification = bt_notification_stream_beginning_create(
                                writer_stream);
                BT_ASSERT(new_notification);
                bt_object_put_ref(stream);
@@ -193,9 +193,9 @@ struct bt_notification *handle_notification(FILE *err,
        }
        case BT_NOTIFICATION_TYPE_STREAM_END:
        {
-               struct bt_stream *stream =
+               const struct bt_stream *stream =
                        bt_notification_stream_end_get_stream(notification);
-               struct bt_stream *writer_stream;
+               const struct bt_stream *writer_stream;
 
                if (!stream) {
                        goto end;
@@ -227,7 +227,7 @@ struct bt_notification_iterator_next_method_return debug_info_iterator_next(
        struct bt_self_component *component = NULL;
        struct debug_info_component *debug_info = NULL;
        struct bt_notification_iterator *source_it = NULL;
-       struct bt_notification *notification;
+       const struct bt_notification *notification;
        struct bt_notification_iterator_next_method_return ret = {
                .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
                .notification = NULL,
This page took 0.026994 seconds and 4 git commands to generate.