Port: Add OSX clock_gettime compat
[lttng-tools.git] / src / bin / lttng-sessiond / ust-clock.h
index c2e0cbcc394a9708f16801802761169e8cd0ea6d..58ff8b9d01da2a032225689ad10c3f8e34053eff 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>
@@ -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.024294 seconds and 5 git commands to generate.