Namespace remaining symbols in lttng/ringbuffer-context.h
[lttng-ust.git] / liblttng-ust / lttng-context-ip.c
index 903123a74686d9e04dde46792076671a17fc346a..b75c8a0150bb90a064e08027a1e4331d523fd881 100644 (file)
@@ -22,7 +22,7 @@ size_t ip_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
-       size += lib_ring_buffer_align(offset, lttng_alignof(void *));
+       size += lttng_ust_lib_ring_buffer_align(offset, lttng_alignof(void *));
        size += sizeof(void *);
        return size;
 }
@@ -35,7 +35,7 @@ void ip_record(struct lttng_ust_ctx_field *field,
        void *ip;
 
        ip = ctx->ip;
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(ip));
+       lttng_ust_lib_ring_buffer_align_ctx(ctx, lttng_alignof(ip));
        chan->ops->event_write(ctx, &ip, sizeof(ip));
 }
 
This page took 0.023179 seconds and 4 git commands to generate.