MCPcopy Create free account
hub / github.com/Shangyizhou/A-Tiny-Network-Library / ThreadPool

Method ThreadPool

src/base/ThreadPool.cc:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "ThreadPool.h"
2
3ThreadPool::ThreadPool(const std::string& name)
4 : mutex_(),
5 cond_(),
6 name_(name),
7 running_(false)
8{
9}
10
11ThreadPool::~ThreadPool()
12{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected