fix: add fallthrough annotations (-Wimplicit-fallthrough)
[lttng-ust.git] / liblttng-ust / lttng-context-ipc-ns.c
index b2c5e27da32a3af59faa97a1f9db7695e1286be2..9988684fdbf664b28585597b6475f9f55db6ff7f 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #define _LGPL_SOURCE
+#include <limits.h>
 #include <stddef.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -93,7 +94,7 @@ size_t ipc_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
-       size += lib_ring_buffer_align(offset, lttng_alignof(ino_t));
+       size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(ino_t));
        size += sizeof(ino_t);
        return size;
 }
@@ -101,12 +102,12 @@ size_t ipc_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 static
 void ipc_ns_record(struct lttng_ust_ctx_field *field,
                 struct lttng_ust_lib_ring_buffer_ctx *ctx,
-                struct lttng_channel *chan)
+                struct lttng_ust_channel_buffer *chan)
 {
        ino_t ipc_ns;
 
        ipc_ns = get_ipc_ns();
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(ipc_ns));
+       lttng_ust_lib_ring_buffer_align_ctx(ctx, lttng_ust_rb_alignof(ipc_ns));
        chan->ops->event_write(ctx, &ipc_ns, sizeof(ipc_ns));
 }
 
@@ -124,8 +125,8 @@ int lttng_add_ipc_ns_to_ctx(struct lttng_ust_ctx **ctx)
        int ret;
 
        type = lttng_ust_create_type_integer(sizeof(ino_t) * CHAR_BIT,
-                       lttng_alignof(ino_t) * CHAR_BIT,
-                       lttng_is_signed_type(ino_t),
+                       lttng_ust_rb_alignof(ino_t) * CHAR_BIT,
+                       lttng_ust_is_signed_type(ino_t),
                        BYTE_ORDER, 10);
        if (!type)
                return -ENOMEM;
This page took 0.025797 seconds and 4 git commands to generate.