1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-12 09:42:50 -05:00

m_count possible race fix

This commit is contained in:
eaxeax
2021-09-23 12:19:36 +03:00
committed by eaxeax
parent 12690c66d6
commit 26ced53e4d
4 changed files with 8 additions and 5 deletions

View File

@@ -90,6 +90,8 @@ private:
# ifdef XMRIG_FEATURE_BENCHMARK
uint32_t m_benchSize = 0;
# endif
std::atomic<uint64_t> m_count = {0};
};