aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-26 15:10:21 -0800
committerbunnei <bunneidev@gmail.com>2021-12-06 16:39:18 -0800
commit0d9afdedc4ef9c0861739b04fc9a53926305e1f3 (patch)
tree58438353898e08ea00ce5cfb3e5a4abcf0f2fb6c /src/core/hle/kernel/k_thread.h
parent894ed14ebc0ca938f2f240f37a5d8f1eda4cd66f (diff)
hle: kernel: k_thread: Treat dummy threads as a special type.
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
-rw-r--r--src/core/hle/kernel/k_thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index be1bc59ae..94b87bef1 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -48,6 +48,7 @@ enum class ThreadType : u32 {
Kernel = 1,
HighPriority = 2,
User = 3,
+ Dummy = 100, // Special thread type for emulation purposes only
};
DECLARE_ENUM_FLAG_OPERATORS(ThreadType);