mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +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);
|
return double(result.QuadPart);
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
return double(mach_absolute_time());
|
return double(mach_absolute_time());
|
||||||
#elif defined(__linux__)
|
#elif defined(__linux__) || defined(__FreeBSD__)
|
||||||
timespec now;
|
timespec now;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &now);
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
||||||
return now.tv_sec * 1e9 + now.tv_nsec;
|
return now.tv_sec * 1e9 + now.tv_nsec;
|
||||||
|
|
Loading…
Add table
Reference in a new issue