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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 238359fc5..d4fefc573 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -253,6 +253,11 @@ void WaitCurrentThread_WaitSynchronization(std::vector<SharedPtr<WaitObject>> wa
253void WaitCurrentThread_ArbitrateAddress(VAddr wait_address); 253void WaitCurrentThread_ArbitrateAddress(VAddr wait_address);
254 254
255/** 255/**
256 * Stops the current thread and removes it from the thread_list
257 */
258void ExitCurrentThread();
259
260/**
256 * Initialize threading 261 * Initialize threading
257 */ 262 */
258void ThreadingInit(); 263void ThreadingInit();