| 86 | } |
| 87 | |
| 88 | void ThreadBase::joinThread() { |
| 89 | (void) pthread_join(_thread, nullptr); |
| 90 | } |
| 91 | |
| 92 | void ThreadBase::setAffinity(int cpu) { |
| 93 | if (cpu > 0 && cpu < getNumberOfProcessorsOnline()) { |
nothing calls this directly
no outgoing calls
no test coverage detected