aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/handle_table.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-04 00:29:15 -0500
committerLioncash <mathew1800@gmail.com>2018-12-04 01:50:30 -0500
commit312690b4509a6e5c5e97b667136aea7693e52ca0 (patch)
tree81c05c9ff48b02023c713d5ed57fc6799e27b274 /src/core/hle/kernel/handle_table.h
parentadc4d332fc1a4054b80cfd575025351b970da689 (diff)
kernel/svc: Implement the resource limit svcGetInfo option
Allows a process to register the resource limit as part of its handle table.
Diffstat (limited to 'src/core/hle/kernel/handle_table.h')
-rw-r--r--src/core/hle/kernel/handle_table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/handle_table.h b/src/core/hle/kernel/handle_table.h
index e3f3e3fb8..6b7927fd8 100644
--- a/src/core/hle/kernel/handle_table.h
+++ b/src/core/hle/kernel/handle_table.h
@@ -13,6 +13,7 @@
namespace Kernel {
enum KernelHandle : Handle {
+ InvalidHandle = 0,
CurrentThread = 0xFFFF8000,
CurrentProcess = 0xFFFF8001,
};