| 23 | } |
| 24 | |
| 25 | int ThreadBase::WaitStop() { |
| 26 | pthread_join(thread_id_, NULL); |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | void *ThreadBase::ThreadProcess(void *arg) { |
| 31 | ThreadBase *runner = (ThreadBase *) arg; |
nothing calls this directly
no outgoing calls
no test coverage detected