Rename ringbuffer-context.h to ust-ringbuffer-context.h
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-vpid.c
index 8bf4841e2b850379dbf340220acca8f94d929325..47b5a8e17e18ad3e6259f79d09ff62aa3460b8c9 100644 (file)
@@ -13,7 +13,7 @@
 #include <unistd.h>
 #include <lttng/ust-events.h>
 #include <lttng/ust-tracer.h>
-#include <lttng/ringbuffer-context.h>
+#include <lttng/ust-ringbuffer-context.h>
 
 #include "context-internal.h"
 
@@ -51,14 +51,14 @@ size_t vpid_get_size(void *priv __attribute__((unused)),
 {
        size_t size = 0;
 
-       size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(pid_t));
+       size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(pid_t));
        size += sizeof(pid_t);
        return size;
 }
 
 static
 void vpid_record(void *priv __attribute__((unused)),
-                struct lttng_ust_lib_ring_buffer_ctx *ctx,
+                struct lttng_ust_ring_buffer_ctx *ctx,
                 struct lttng_ust_channel_buffer *chan)
 {
        pid_t vpid = wrapper_getvpid();
This page took 0.026536 seconds and 4 git commands to generate.