| 58 | CountDownLatch* latch_; |
| 59 | |
| 60 | ThreadData(ThreadFunc func, |
| 61 | const string& name, |
| 62 | pid_t* tid, |
| 63 | CountDownLatch* latch) |
| 64 | : func_(std::move(func)), |
| 65 | name_(name), |
| 66 | tid_(tid), |
| 67 | latch_(latch) |
| 68 | { } |
| 69 | |
| 70 | void runInThread() |
| 71 | { |
nothing calls this directly
no outgoing calls
no test coverage detected