summaryrefslogtreecommitdiffstats
path: root/contrib/libs/benchmark/src/timers.cc
diff options
context:
space:
mode:
authorilnaz <[email protected]>2022-07-21 09:45:49 +0300
committerilnaz <[email protected]>2022-07-21 09:45:49 +0300
commitfab0834c2c9d7652c3b4b3897654a85b3fbb7885 (patch)
tree34d27f24cfe9c87ce9e6ce9b8866cc122d9b8e34 /contrib/libs/benchmark/src/timers.cc
parent6b94014b1082ce9c3c702bdc7051efd00658da1b (diff)
Get rid of 'streamImpl' in responses
Diffstat (limited to 'contrib/libs/benchmark/src/timers.cc')
-rw-r--r--contrib/libs/benchmark/src/timers.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/benchmark/src/timers.cc b/contrib/libs/benchmark/src/timers.cc
index 9a21cb1436b..97682bdcc7f 100644
--- a/contrib/libs/benchmark/src/timers.cc
+++ b/contrib/libs/benchmark/src/timers.cc
@@ -123,7 +123,7 @@ double ProcessCPUUsage() {
// clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...) returns 0 on Emscripten.
// Use Emscripten-specific API. Reported CPU time would be exactly the
// same as total time, but this is ok because there aren't long-latency
- // syncronous system calls in Emscripten.
+ // synchronous system calls in Emscripten.
return emscripten_get_now() * 1e-3;
#elif defined(CLOCK_PROCESS_CPUTIME_ID) && !defined(BENCHMARK_OS_MACOSX)
// FIXME We want to use clock_gettime, but its not available in MacOS 10.11.