| 103 | } |
| 104 | |
| 105 | void Thread::joinThread() { |
| 106 | if (_state == State::Unknown) { |
| 107 | return; |
| 108 | } |
| 109 | (void) pthread_join(_thread, nullptr); |
| 110 | } |
| 111 | |
| 112 | void Thread::setAffinity(int UNUSED(cpu)) { |
| 113 | // if (cpu > 0 && cpu < getNumberOfProcessorsOnline()) { |
nothing calls this directly
no outgoing calls
no test coverage detected