Move include/ust/ to include/lttng/
[lttng-ust.git] / libust / lttng-context-procname.c
index ecb001d9825d3ba85971d7dd869245409db7d08a..b9bae82eba91be79fdd2ca1749fe2e5f2066b570 100644 (file)
@@ -8,9 +8,9 @@
  */
 
 #include <sys/prctl.h>
-#include <ust/lttng-events.h>
-#include <ust/lttng-tracer.h>
-#include <ust/ringbuffer-config.h>
+#include <lttng/ust-events.h>
+#include <lttng/ust-tracer.h>
+#include <lttng/ringbuffer-config.h>
 #include <assert.h>
 
 #define PROCNAME_LEN   17      /* includes \0 */
@@ -28,7 +28,7 @@ char *wrapper_getprocname(void)
 {
        int ret;
 
-       if (unlikely(!cached_procname[0])) {
+       if (caa_unlikely(!cached_procname[0])) {
                ret = prctl(PR_GET_NAME, (unsigned long) cached_procname,
                        0, 0, 0);
                assert(!ret);
This page took 0.024757 seconds and 4 git commands to generate.