From 12266842295a871cd9584e87707986c3d371a86b Mon Sep 17 00:00:00 2001 From: Ketasaja Date: Wed, 14 Aug 2024 01:05:48 +0000 Subject: [PATCH] Change period in lperf.cpp --- VM/src/lperf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VM/src/lperf.cpp b/VM/src/lperf.cpp index 53293307..fef70c36 100644 --- a/VM/src/lperf.cpp +++ b/VM/src/lperf.cpp @@ -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);