summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-15 23:38:51 -0400
committerGravatar Lioncash2019-03-15 23:58:37 -0400
commit51d7f6bffcc0498a47abc7de27bf0906fc523dae (patch)
tree1b0860fc4bfe74197f4a714f549c74f28b4bcc95 /src/core/hle/kernel/thread.h
parentkernel/thread: Migrate WaitCurrentThread_Sleep into the Thread interface (diff)
downloadyuzu-51d7f6bffcc0498a47abc7de27bf0906fc523dae.tar.gz
yuzu-51d7f6bffcc0498a47abc7de27bf0906fc523dae.tar.xz
yuzu-51d7f6bffcc0498a47abc7de27bf0906fc523dae.zip
kernel/thread: Move thread exiting logic from ExitCurrentThread to svcExitThread
Puts the operation on global state in the same places as the rest of the svc calls.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index d7c7a31f7..ccdefeecc 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -463,9 +463,4 @@ private:
463 */ 463 */
464Thread* GetCurrentThread(); 464Thread* GetCurrentThread();
465 465
466/**
467 * Stops the current thread and removes it from the thread_list
468 */
469void ExitCurrentThread();
470
471} // namespace Kernel 466} // namespace Kernel