| 58 | } |
| 59 | |
| 60 | void ThreadPool::wait(std::map<Thread*, bool>& thread_map) |
| 61 | { |
| 62 | while (thread_map.size() > 0) { |
| 63 | checkOneThreadFinished(thread_map); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | void* ThreadPool::wrapper(void* arg) |
| 68 | { |
nothing calls this directly
no outgoing calls
no test coverage detected