| 1 | #include "ThreadPool.h" |
| 2 | |
| 3 | ThreadPool::ThreadPool(const std::string& name) |
| 4 | : mutex_(), |
| 5 | cond_(), |
| 6 | name_(name), |
| 7 | running_(false) |
| 8 | { |
| 9 | } |
| 10 | |
| 11 | ThreadPool::~ThreadPool() |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected