From: Jonathan Gray Date: Wed, 28 Feb 2018 10:19:19 +0000 (+1100) Subject: util: use clock_gettime() on PIPE_OS_BSD X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7bea40e56652a1ded4374d92fb340b454fbac475;p=mesa.git util: use clock_gettime() on PIPE_OS_BSD OpenBSD, FreeBSD, NetBSD and DragonFlyBSD all have clock_gettime() so use it when PIPE_OS_BSD is defined. Signed-off-by: Jonathan Gray Reviewed-by: Brian Paul --- diff --git a/src/util/os_time.c b/src/util/os_time.c index 72dc7e49c0e..ac488b2287c 100644 --- a/src/util/os_time.c +++ b/src/util/os_time.c @@ -55,7 +55,7 @@ int64_t os_time_get_nano(void) { -#if defined(PIPE_OS_LINUX) +#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_BSD) struct timespec tv; clock_gettime(CLOCK_MONOTONIC, &tv);