| 100 | } |
| 101 | |
| 102 | static void ThreadFunc(Thread* arg) { arg->ThreadFuncImpl(); } |
| 103 | |
| 104 | // Called by the master thead to give this thread work to do. |
| 105 | void StartWork(Task* task) { ChangeState(State::HasWork, task); } |
nothing calls this directly
no test coverage detected