Change in lperf.cpp

This commit is contained in:
Ketasaja 2024-08-13 23:45:09 +00:00
parent a8b35e6689
commit 2415278efe
No known key found for this signature in database
GPG key ID: CFEC764C3F7ADC69

View file

@ -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;