diff options
author | SChernykh <sergey.v.chernykh@gmail.com> | 2022-06-14 21:23:23 +0200 |
---|---|---|
committer | SChernykh <sergey.v.chernykh@gmail.com> | 2022-09-20 10:22:12 +0200 |
commit | 6adf03cdc516a9236aac6dbd6f289750761b8d24 (patch) | |
tree | dd316915f51aaae8d711832b0bc40374dd822ba5 /src/common/threadpool.h | |
parent | Merge pull request #8545 (diff) | |
download | monero-6adf03cdc516a9236aac6dbd6f289750761b8d24.tar.xz |
Second thread pool for IO
Diffstat (limited to '')
-rw-r--r-- | src/common/threadpool.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/threadpool.h b/src/common/threadpool.h index ce1bc5799..53421e18b 100644 --- a/src/common/threadpool.h +++ b/src/common/threadpool.h @@ -42,10 +42,14 @@ namespace tools class threadpool { public: - static threadpool& getInstance() { + static threadpool& getInstanceForCompute() { static threadpool instance; return instance; } + static threadpool& getInstanceForIO() { + static threadpool instance(8); + return instance; + } static threadpool *getNewForUnitTests(unsigned max_threads = 0) { return new threadpool(max_threads); } |