diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-08-21 17:55:19 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-08-21 17:55:19 +0800 |
commit | 2a9bc5536330c169d43053fc7cad6311ec62c538 (patch) | |
tree | 316bbf3f999df50dda1044061766a3d641a103ec | |
parent | 6b26b3cf7eceda2c3fdebda268bbb900a4b57ffb (diff) |
Non x86 Darwin can use Linux's non x86 CPU clock
-rw-r--r-- | indra/llcommon/llfasttimer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llfasttimer.h b/indra/llcommon/llfasttimer.h index 53f936db34..9a5789d719 100644 --- a/indra/llcommon/llfasttimer.h +++ b/indra/llcommon/llfasttimer.h @@ -128,7 +128,7 @@ public: #endif -#if (LL_LINUX) && !(defined(__i386__) || defined(__amd64__)) +#if (LL_LINUX || LL_DARWIN) && !(defined(__i386__) || defined(__amd64__)) // // Linux implementation of CPU clock - non-x86. // This is accurate but SLOW! Only use out of desperation. |