Skip to content
Snippets Groups Projects
Commit 3d7693f7 authored by bunnei's avatar bunnei
Browse files

kernel: added enum for known CurrentThread and CurrentProcess handles

parent 96b21055
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,11 @@ typedef s32 Result; ...@@ -11,6 +11,11 @@ typedef s32 Result;
namespace Kernel { namespace Kernel {
enum KernelHandle {
CurrentThread = 0xFFFF8000,
CurrentProcess = 0xFFFF8001,
};
enum class HandleType : u32 { enum class HandleType : u32 {
Unknown = 0, Unknown = 0,
Port = 1, Port = 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment