From 03ab1b42f4cd0df99e8ee93c35b8c371d4385225 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 8 Apr 2019 16:03:17 -0400 Subject: [PATCH] Fix: hide internal libcommon time utilities MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit libcommon's time-handling utilities are used by liblttng-ctl. Like other symbols of libcommon, they must be marked as hidden to prevent them from being exported as part of the liblttng-ctl interface. Signed-off-by: Jérémie Galarneau --- src/common/time.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/time.h b/src/common/time.h index bb0991de6..24513d30b 100644 --- a/src/common/time.h +++ b/src/common/time.h @@ -21,6 +21,7 @@ #include #include +#include #define MSEC_PER_SEC 1000ULL #define NSEC_PER_SEC 1000000000ULL @@ -35,6 +36,7 @@ #define USEC_PER_MINUTE (USEC_PER_SEC * SEC_PER_MINUTE) #define USEC_PER_HOURS (USEC_PER_MINUTE * MINUTE_PER_HOUR) +LTTNG_HIDDEN bool locale_supports_utf8(void); #define NSEC_UNIT "ns" @@ -50,11 +52,13 @@ bool locale_supports_utf8(void); * Returns 0 on success, else -1 on error. errno is set to EOVERFLOW if * input would overflow the output in milliseconds. */ +LTTNG_HIDDEN int timespec_to_ms(struct timespec ts, unsigned long *ms); /* * timespec_abs_diff: Absolute difference between timespec. */ +LTTNG_HIDDEN struct timespec timespec_abs_diff(struct timespec ts_a, struct timespec ts_b); #endif /* LTTNG_TIME_H */ -- 2.34.1