| 140 | AtomicInt32 Thread::numCreated_; |
| 141 | |
| 142 | Thread::Thread(ThreadFunc func, const string& n) |
| 143 | : started_(false), |
| 144 | joined_(false), |
| 145 | pthreadId_(0), |
| 146 | tid_(0), |
| 147 | func_(std::move(func)), |
| 148 | name_(n), |
| 149 | latch_(1) |
| 150 | { |
| 151 | setDefaultName(); |
| 152 | } |
| 153 | |
| 154 | Thread::~Thread() |
| 155 | { |
nothing calls this directly
no outgoing calls
no test coverage detected