hle: kernel: k_thread: Treat dummy threads as a special type.
This commit is contained in:
parent
8a38790bd3
commit
826b07162a
2 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue