| 142 | uint64_t ThreadPool::numJobsSubmitted() const noexcept { return ctr.load(); } |
| 143 | uint64_t ThreadPool::overflows() const noexcept { return noverflows.load(); } |
| 144 | int ThreadPool::maxThreadCount() const noexcept { return pool->maxThreadCount(); } |
| 145 | bool ThreadPool::setMaxThreadCount(int max) { |
| 146 | if (max < 1) |
| 147 | return false; |
no outgoing calls
no test coverage detected