summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-12-18 22:53:58 -0500
committerGravatar Lioncash2018-12-18 22:54:01 -0500
commit62d437705367421a1b919922f1ecf3c4a43d75c5 (patch)
tree51530d41b1c101b0872d32b792570409c4485824 /src/core/hle/kernel/process.h
parentkernel/svc: Correct output parameter for svcGetThreadId (diff)
downloadyuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.gz
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.tar.xz
yuzu-62d437705367421a1b919922f1ecf3c4a43d75c5.zip
kernel/kernel: Use correct initial PID for userland Process instances
Starts the process ID counter off at 81, which is what the kernel itself checks against internally when creating processes. It's actually supposed to panic if the PID is less than 81 for a userland process.
Diffstat (limited to 'src/core/hle/kernel/process.h')
-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 {
120 120
121class Process final : public WaitObject { 121class Process final : public WaitObject {
122public: 122public:
123 enum : u64 {
124 /// Lowest allowed process ID for a kernel initial process.
125 InitialKIPIDMin = 1,
126 /// Highest allowed process ID for a kernel initial process.
127 InitialKIPIDMax = 80,
128
129 /// Lowest allowed process ID for a userland process.
130 ProcessIDMin = 81,
131 /// Highest allowed process ID for a userland process.
132 ProcessIDMax = 0xFFFFFFFFFFFFFFFF,
133 };
134
123 static constexpr std::size_t RANDOM_ENTROPY_SIZE = 4; 135 static constexpr std::size_t RANDOM_ENTROPY_SIZE = 4;
124 136
125 static SharedPtr<Process> Create(KernelCore& kernel, std::string&& name); 137 static SharedPtr<Process> Create(KernelCore& kernel, std::string&& name);