diff options
author | SChernykh <sergey.v.chernykh@gmail.com> | 2023-06-08 07:54:21 +0200 |
---|---|---|
committer | SChernykh <sergey.v.chernykh@gmail.com> | 2023-06-08 07:56:05 +0200 |
commit | c589e1549b4faf758326f645840611156ead6430 (patch) | |
tree | 70824f02b1a3c2102a16423671f9495ac645edc3 /src | |
parent | Merge pull request #8842 (diff) | |
download | monero-c589e1549b4faf758326f645840611156ead6430.tar.xz |
Speed up perf_timer init on x86
All Monero binaries have 1 second startup delay because of this code. This is especially noticeable and affects UX in Monero GUI wallet with local node where it often starts another monerod instance to run commands and query node status.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/perf_timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/perf_timer.cpp b/src/common/perf_timer.cpp index 2b67154e5..229748994 100644 --- a/src/common/perf_timer.cpp +++ b/src/common/perf_timer.cpp @@ -62,7 +62,7 @@ namespace tools while (1) { t1 = epee::misc_utils::get_ns_count(); - if (t1 - t0 > 1*1000000000) break; // work one second + if (t1 - t0 > 1*100000000) break; // work 0.1 seconds } uint64_t r1 = get_tick_count(); |