| 17 | using namespace muduo::net; |
| 18 | |
| 19 | EventLoopThreadPool::EventLoopThreadPool(EventLoop* baseLoop, const string& nameArg) |
| 20 | : baseLoop_(baseLoop), |
| 21 | name_(nameArg), |
| 22 | started_(false), |
| 23 | numThreads_(0), |
| 24 | next_(0) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | EventLoopThreadPool::~EventLoopThreadPool() |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected