Build fix: Missing message in LTTNG_DEPRECATED invocation
[lttng-tools.git] / src / common / time.c
index 3a10447e96011e01a9079d9b23d6213af0aebd1b..ccb5874746b713f3872bee059d6a1998af3495d7 100644 (file)
@@ -9,23 +9,21 @@
 #include <common/error.h>
 #include <common/macros.h>
 #include <common/error.h>
+#include <common/compat/errno.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <limits.h>
-#include <errno.h>
 #include <pthread.h>
 #include <locale.h>
 #include <string.h>
 
 static bool utf8_output_supported;
 
-LTTNG_HIDDEN
 bool locale_supports_utf8(void)
 {
        return utf8_output_supported;
 }
 
-LTTNG_HIDDEN
 int timespec_to_ms(struct timespec ts, unsigned long *ms)
 {
        unsigned long res, remain_ms;
@@ -45,7 +43,6 @@ int timespec_to_ms(struct timespec ts, unsigned long *ms)
        return 0;
 }
 
-LTTNG_HIDDEN
 struct timespec timespec_abs_diff(struct timespec t1, struct timespec t2)
 {
        uint64_t ts1 = (uint64_t) t1.tv_sec * (uint64_t) NSEC_PER_SEC +
@@ -73,7 +70,6 @@ void __attribute__((constructor)) init_locale_utf8_support(void)
        }
 }
 
-LTTNG_HIDDEN
 int time_to_iso8601_str(time_t time, char *str, size_t len)
 {
        int ret = 0;
@@ -88,7 +84,7 @@ int time_to_iso8601_str(time_t time, char *str, size_t len)
                goto end;
        }
 
-        tm_result = localtime_r(&time, &tm_storage);
+       tm_result = localtime_r(&time, &tm_storage);
        if (!tm_result) {
                ret = -1;
                PERROR("Failed to break down timestamp to tm structure");
@@ -105,7 +101,6 @@ end:
        return ret;
 }
 
-LTTNG_HIDDEN
 int time_to_datetime_str(time_t time, char *str, size_t len)
 {
        int ret = 0;
This page took 0.024118 seconds and 4 git commands to generate.