Wait the specified time for the thread to finish. Returns false if the thread didn't terminate
| 91 | // Wait the specified time for the thread to finish. |
| 92 | // Returns false if the thread didn't terminate |
| 93 | bool JoinThread( s32 handle, s32 timeout ) |
| 94 | { |
| 95 | int ret = ::sceKernelWaitThreadEnd(handle, (SceUInt*)&timeout); |
| 96 | |
| 97 | return (ret >= 0); |
| 98 | } |
| 99 | |
| 100 | void ThreadSleepMs( u32 ms ) |
| 101 | { |
no outgoing calls
no test coverage detected