mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Change in lperf.cpp
This commit is contained in:
parent
a8b35e6689
commit
2415278efe
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ static double clock_timestamp()
|
|||
return double(result.QuadPart);
|
||||
#elif defined(__APPLE__)
|
||||
return double(mach_absolute_time());
|
||||
#elif defined(__linux__)
|
||||
#elif defined(__linux__) || defined(__FreeBSD__)
|
||||
timespec now;
|
||||
clock_gettime(CLOCK_MONOTONIC, &now);
|
||||
return now.tv_sec * 1e9 + now.tv_nsec;
|
||||
|
|
Loading…
Add table
Reference in a new issue