| 34 | for(UInt16 i=0;i<threadsAvailable;++i) _threads.emplace_back(new PoolThread()); |
| 35 | } |
| 36 | virtual ~PoolThreads() { |
| 37 | for(PoolThread* pThread : _threads) delete pThread; |
| 38 | } |
| 39 | |
| 40 | void join() { for(PoolThread* pThread : _threads) pThread->join(); } |
| 41 | UInt32 threadsAvailable() const { return _threads.size(); } |
nothing calls this directly
no outgoing calls
no test coverage detected