diff options
author | ilnaz <[email protected]> | 2022-07-21 09:45:49 +0300 |
---|---|---|
committer | ilnaz <[email protected]> | 2022-07-21 09:45:49 +0300 |
commit | fab0834c2c9d7652c3b4b3897654a85b3fbb7885 (patch) | |
tree | 34d27f24cfe9c87ce9e6ce9b8866cc122d9b8e34 /contrib/libs/benchmark/src/timers.cc | |
parent | 6b94014b1082ce9c3c702bdc7051efd00658da1b (diff) |
Get rid of 'streamImpl' in responses
Diffstat (limited to 'contrib/libs/benchmark/src/timers.cc')
-rw-r--r-- | contrib/libs/benchmark/src/timers.cc | 2 |
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. |