mirror of
https://gitlab.com/skmp/dca3-game.git
synced 2025-08-16 03:34:28 +02:00
Use CLOCK_MONOTONIC_FAST when available (FreeBSD)
CLOCK_MONOTONIC_FAST is the equivalent of Linux's CLOCK_MONOTONIC_RAW.
This commit is contained in:
@@ -235,8 +235,10 @@ double
|
|||||||
psTimer(void)
|
psTimer(void)
|
||||||
{
|
{
|
||||||
struct timespec start;
|
struct timespec start;
|
||||||
#ifdef __linux__
|
#if defined(CLOCK_MONOTONIC_RAW)
|
||||||
clock_gettime(CLOCK_MONOTONIC_RAW, &start);
|
clock_gettime(CLOCK_MONOTONIC_RAW, &start);
|
||||||
|
#elif defined(CLOCK_MONOTONIC_FAST)
|
||||||
|
clock_gettime(CLOCK_MONOTONIC_FAST, &start);
|
||||||
#else
|
#else
|
||||||
clock_gettime(CLOCK_MONOTONIC, &start);
|
clock_gettime(CLOCK_MONOTONIC, &start);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user