summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h2
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 */
139void WaitCurrentThread_WaitSynchronization(WaitObject* wait_object, bool wait_all=false); 139void 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