mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-14 20:42:56 +00:00
kernel: added enum for known CurrentThread and CurrentProcess handles
This commit is contained in:
parent
96b2105524
commit
3d7693f75f
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue