[winpr,sysinfo] clock_gettime is available since POSIX 1993

This commit is contained in:
akallabeth 2024-03-18 08:31:29 +01:00 committed by akallabeth
parent 75ca810d96
commit 1c0bab542b

View File

@ -34,7 +34,7 @@
#endif
#if !defined(_WIN32)
#if defined(_POSIX_SOURCE) && (_POSIX_C_SOURCE >= 200112L)
#if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 199309L)
#include <time.h>
#elif !defined(__APPLE__)
#include <sys/time.h>
@ -579,7 +579,7 @@ ULONGLONG winpr_GetTickCount64(void)
UINT64 winpr_GetTickCount64NS(void)
{
UINT64 ticks = 0;
#if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)
#if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 199309L)
struct timespec ts = { 0 };
if (clock_gettime(CLOCK_MONOTONIC_RAW, &ts) == 0)
@ -632,7 +632,7 @@ UINT64 winpr_GetUnixTimeNS(void)
} t = { 0 };
GetSystemTimeAsFileTime(&t.ft);
return (t.u64 - FILETIME_TO_UNIX_OFFSET_S * 10000000ull) * 100ull;
#elif _POSIX_C_SOURCE >= 200112L
#elif defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 199309L)
struct timespec ts = { 0 };
if (clock_gettime(CLOCK_REALTIME, &ts) != 0)
return 0;