summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-19 04:53:58 +0100
committerLioncash <mathew1800@gmail.com>2018-12-19 04:54:01 +0100
commit62d437705367421a1b919922f1ecf3c4a43d75c5 (patch)
tree51530d41b1c101b0872d32b792570409c4485824 /src/core/hle/kernel/process.h
parentkernel/svc: Correct output parameter for svcGetThreadId (diff)
downloadyuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.gz
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.bz2
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.lz
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.xz
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.zst
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/process.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 725bfa01a..7da367251 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -120,6 +120,18 @@ struct CodeSet final {
class Process final : public WaitObject {
public:
+ enum : u64 {
+ /// Lowest allowed process ID for a kernel initial process.
+ InitialKIPIDMin = 1,
+ /// Highest allowed process ID for a kernel initial process.
+ InitialKIPIDMax = 80,
+
+ /// Lowest allowed process ID for a userland process.
+ ProcessIDMin = 81,
+ /// Highest allowed process ID for a userland process.
+ ProcessIDMax = 0xFFFFFFFFFFFFFFFF,
+ };
+
static constexpr std::size_t RANDOM_ENTROPY_SIZE = 4;
static SharedPtr<Process> Create(KernelCore& kernel, std::string&& name);