Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely.
This commit is contained in:
parent
c06d64528a
commit
9412996c8f
4 changed files with 59 additions and 20 deletions
|
@ -136,7 +136,7 @@ void WaitCurrentThread_Sleep();
|
|||
* @param wait_object Kernel object that we are waiting on
|
||||
* @param wait_all If true, wait on all objects before resuming (for WaitSynchronizationN only)
|
||||
*/
|
||||
void WaitCurrentThread_WaitSynchronization(WaitObject* wait_object, bool wait_all=false);
|
||||
void WaitCurrentThread_WaitSynchronization(SharedPtr<WaitObject> wait_object, bool wait_all = false);
|
||||
|
||||
/**
|
||||
* Waits the current thread from an ArbitrateAddress call
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue