summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-23 01:36:56 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-23 01:36:56 +0200
commitb99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe (patch)
treedf05518971810d04f48a9e38505e487b5d29c323 /src/core/hle/kernel/thread.h
parentthread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread (diff)
downloadyuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.gz
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.bz2
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.lz
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.xz
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.zst
yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index d54f47aaf..9628f165d 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -53,8 +53,8 @@ Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
/// Reschedules to the next available thread (call after current thread is suspended)
void Reschedule();
-/// Puts a thread in the wait state for the given type/reason
-void WaitCurThread(WaitType wait_type, const char* reason);
+/// Puts the current thread in the wait state for the given type
+void WaitCurrentThread(WaitType wait_type);
/// Resumes a thread from waiting by marking it as "ready"
void ResumeThreadFromWait(Handle handle);