Namespace remaining symbols in lttng/ringbuffer-context.h
[lttng-ust.git] / liblttng-ust / lttng-context-time-ns.c
index a82d12af7e558e31ae7c1e2499ef7ce04df1010b..83210e3eb96512bdefd9042a9c3ddef16db49217 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #define _LGPL_SOURCE
+#include <limits.h>
 #include <stddef.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -92,7 +93,7 @@ size_t time_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_alignof(ino_t));
        size += sizeof(ino_t);
        return size;
 }
@@ -105,7 +106,7 @@ void time_ns_record(struct lttng_ust_ctx_field *field,
        ino_t time_ns;
 
        time_ns = get_time_ns();
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(time_ns));
+       lttng_ust_lib_ring_buffer_align_ctx(ctx, lttng_alignof(time_ns));
        chan->ops->event_write(ctx, &time_ns, sizeof(time_ns));
 }
 
This page took 0.024021 seconds and 4 git commands to generate.