Use CLOCK_MONOTONIC_FAST when available (FreeBSD)

CLOCK_MONOTONIC_FAST is the equivalent of Linux's CLOCK_MONOTONIC_RAW.
This commit is contained in:
Greg V 2020-09-28 04:59:14 +03:00
parent 7d31b7005a
commit 7d03a6fe29
1 changed files with 3 additions and 1 deletions

View File

@ -235,8 +235,10 @@ double
psTimer(void)
{
struct timespec start;
#ifdef __linux__
#if defined(CLOCK_MONOTONIC_RAW)
clock_gettime(CLOCK_MONOTONIC_RAW, &start);
#elif defined(CLOCK_MONOTONIC_FAST)
clock_gettime(CLOCK_MONOTONIC_FAST, &start);
#else
clock_gettime(CLOCK_MONOTONIC, &start);
#endif