Replace libuuid with internal implementation
[lttng-tools.git] / src / bin / lttng-sessiond / ust-clock.h
index c2e0cbcc394a9708f16801802761169e8cd0ea6d..07920e060de574ac9184f2b15896dea8b907fa1b 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef _UST_CLOCK_H
 #define _UST_CLOCK_H
 
-#include <time.h>
+#include <common/compat/time.h>
 #include <sys/time.h>
 #include <stdint.h>
 #include <stddef.h>
@@ -29,7 +29,7 @@
 #include <urcu/arch.h>
 #include <lttng/ust-clock.h>
 
-#include <common/compat/uuid.h>
+#include <common/uuid.h>
 
 /* TRACE CLOCK */
 
@@ -57,7 +57,7 @@ uint64_t trace_clock_read64_monotonic(void)
 {
        struct timespec ts;
 
-       if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
+       if (lttng_clock_gettime(CLOCK_MONOTONIC, &ts)) {
                /* TODO Report error cleanly up the chain. */
                PERROR("clock_gettime CLOCK_MONOTONIC");
                ts.tv_sec = 0;
This page took 0.024945 seconds and 5 git commands to generate.