From: Sami Kerola Date: Mon, 7 Jan 2019 21:31:34 +0000 (+0000) Subject: include: add indirect monotonic clock id specifier X-Git-Tag: v2.34-rc1~159^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee6e39305c55d04e647c294898568ed1d3699638;p=thirdparty%2Futil-linux.git include: add indirect monotonic clock id specifier Avoid repeated ifdef checks in code by adding a project specific preprocessor definition. Signed-off-by: Sami Kerola --- diff --git a/include/monotonic.h b/include/monotonic.h index a499fa34ac..296173ecec 100644 --- a/include/monotonic.h +++ b/include/monotonic.h @@ -1,6 +1,12 @@ #ifndef UTIL_LINUX_MONOTONIC_H #define UTIL_LINUX_MONOTONIC_H +# ifdef CLOCK_MONOTONIC_RAW +# define UL_CLOCK_MONOTONIC CLOCK_MONOTONIC_RAW +# else +# define UL_CLOCK_MONOTONIC CLOCK_MONOTONIC +# endif + #include extern int get_boot_time(struct timeval *boot_time); diff --git a/lib/monotonic.c b/lib/monotonic.c index bb58e15d7b..96ead1ee0d 100644 --- a/lib/monotonic.c +++ b/lib/monotonic.c @@ -52,12 +52,8 @@ int gettime_monotonic(struct timeval *tv) int ret; struct timespec ts; -# ifdef CLOCK_MONOTONIC_RAW /* Linux specific, can't slew */ - if (!(ret = clock_gettime(CLOCK_MONOTONIC_RAW, &ts))) { -# else - if (!(ret = clock_gettime(CLOCK_MONOTONIC, &ts))) { -# endif + if (!(ret = clock_gettime(UL_CLOCK_MONOTONIC, &ts))) { tv->tv_sec = ts.tv_sec; tv->tv_usec = ts.tv_nsec / 1000; }