MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / JoinThread

Function JoinThread

Source/SysPSP/Utility/ThreadPSP.cpp:93–98  ·  view source on GitHub ↗

Wait the specified time for the thread to finish. Returns false if the thread didn't terminate

Source from the content-addressed store, hash-verified

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

Callers 2

StopAudioMethod · 0.50
WebDebug_FiniFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected