tracepoint: split provider and event name
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-cpu-id.c
index 900b3c2e526bf1d76945c40d9e952250b70a9838..f1455ea1b4248cc8f8ccc22bc6f030d5d3c4df29 100644 (file)
@@ -19,8 +19,8 @@
 #include <limits.h>
 #include <lttng/ust-events.h>
 #include <lttng/ust-tracer.h>
-#include "common/ringbuffer/getcpu.h"
-#include <lttng/ringbuffer-context.h>
+#include "lib/lttng-ust/getcpu.h"
+#include <lttng/ust-ringbuffer-context.h>
 
 #include "context-internal.h"
 
@@ -30,14 +30,14 @@ size_t cpu_id_get_size(void *priv __attribute__((unused)),
 {
        size_t size = 0;
 
-       size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(int));
+       size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(int));
        size += sizeof(int);
        return size;
 }
 
 static
 void cpu_id_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)
 {
        int cpu;
This page took 0.024197 seconds and 4 git commands to generate.