| 64 | } |
| 65 | |
| 66 | bool Thread::GetIsAlive() |
| 67 | { |
| 68 | if (GetInternalThread() == NULL) |
| 69 | return false; |
| 70 | bool success = BfpThread_WaitFor(GetInternalThread()->mThreadHandle, 0); |
| 71 | return !success; |
| 72 | } |
| 73 | |
| 74 | bool Thread::GetIsThreadPoolThread() |
| 75 | { |
nothing calls this directly
no test coverage detected