diff options
| author | 2015-01-18 14:33:11 -0500 | |
|---|---|---|
| committer | 2015-01-21 20:47:46 -0500 | |
| commit | 9412996c8f86f5da5a9052f7533b05e9780c4eb0 (patch) | |
| tree | af0ddc0b464d92c7e13664f6f435c5de6c36301a /src/core/hle/kernel/thread.h | |
| parent | SVC: Removed a Sleep that made no sense (diff) | |
| download | yuzu-9412996c8f86f5da5a9052f7533b05e9780c4eb0.tar.gz yuzu-9412996c8f86f5da5a9052f7533b05e9780c4eb0.tar.xz yuzu-9412996c8f86f5da5a9052f7533b05e9780c4eb0.zip | |
Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 9907aa6e1..a3a17e6c0 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -136,7 +136,7 @@ void WaitCurrentThread_Sleep(); | |||
| 136 | * @param wait_object Kernel object that we are waiting on | 136 | * @param wait_object Kernel object that we are waiting on |
| 137 | * @param wait_all If true, wait on all objects before resuming (for WaitSynchronizationN only) | 137 | * @param wait_all If true, wait on all objects before resuming (for WaitSynchronizationN only) |
| 138 | */ | 138 | */ |
| 139 | void WaitCurrentThread_WaitSynchronization(WaitObject* wait_object, bool wait_all=false); | 139 | void WaitCurrentThread_WaitSynchronization(SharedPtr<WaitObject> wait_object, bool wait_all = false); |
| 140 | 140 | ||
| 141 | /** | 141 | /** |
| 142 | * Waits the current thread from an ArbitrateAddress call | 142 | * Waits the current thread from an ArbitrateAddress call |