Change period in lperf.cpp

This commit is contained in:
Ketasaja 2024-08-14 01:05:48 +00:00
parent 2415278efe
commit 1226684229
No known key found for this signature in database
GPG key ID: CFEC764C3F7ADC69

View file

@ -30,7 +30,7 @@ static double clock_period()
mach_timebase_info_data_t result = {};
mach_timebase_info(&result);
return double(result.numer) / double(result.denom) * 1e-9;
#elif defined(__linux__)
#elif defined(__linux__) || defined(__FreeBSD__)
return 1e-9;
#else
return 1.0 / double(CLOCKS_PER_SEC);