| 5 | namespace evpp { |
| 6 | |
| 7 | EventLoopThreadPool::EventLoopThreadPool(EventLoop* base_loop, uint32_t thread_number) |
| 8 | : base_loop_(base_loop), |
| 9 | thread_num_(thread_number) { |
| 10 | DLOG_TRACE << "thread_num=" << thread_num() << " base loop=" << base_loop_; |
| 11 | } |
| 12 | |
| 13 | EventLoopThreadPool::~EventLoopThreadPool() { |
| 14 | DLOG_TRACE << "thread_num=" << thread_num(); |
nothing calls this directly
no outgoing calls
no test coverage detected