| 59 | } |
| 60 | |
| 61 | void Thread::SetPriorityNative(int priority) |
| 62 | { |
| 63 | return BfpThread_SetPriority(GetInternalThread()->mThreadHandle, (BfpThreadPriority)(priority - 2), NULL); |
| 64 | } |
| 65 | |
| 66 | bool Thread::GetIsAlive() |
| 67 | { |
nothing calls this directly
no test coverage detected