summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-12-17 12:08:38 +0100
committerwwylele <wwylele@gmail.com>2016-12-17 18:23:52 +0100
commit5728e42634740463ba2da4758d817ad09a84dc60 (patch)
tree61df2f8ed57ff935c1ac018a64f86d683df45c1e /src/core/hle/kernel/thread.h
parentMerge pull request #2335 from yuriks/shader-refactor (diff)
downloadyuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar.gz
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar.bz2
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar.lz
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar.xz
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.tar.zst
yuzu-5728e42634740463ba2da4758d817ad09a84dc60.zip
Diffstat (limited to '')
-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
void WaitCurrentThread_ArbitrateAddress(VAddr wait_address);
/**
+ * Stops the current thread and removes it from the thread_list
+ */
+void ExitCurrentThread();
+
+/**
* Initialize threading
*/
void ThreadingInit();