| 91 | } |
| 92 | |
| 93 | void *Thread::getResult() const |
| 94 | { |
| 95 | if (wait()) |
| 96 | return ARCH->getResultOfThread(m_thread); |
| 97 | else |
| 98 | return nullptr; |
| 99 | } |
| 100 | |
| 101 | IArchMultithread::ThreadID Thread::getID() const |
| 102 | { |
nothing calls this directly
no test coverage detected