hle: kernel: k_thread: Treat dummy threads as a special type.

This commit is contained in:
bunnei 2021-11-26 15:10:21 -08:00
parent 8a38790bd3
commit 826b07162a
2 changed files with 4 additions and 1 deletions

View file

@ -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);