diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 2be39fb52..1c2290651 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -112,7 +112,7 @@ struct KernelCore::Impl { | |||
| 112 | 112 | ||
| 113 | void Shutdown() { | 113 | void Shutdown() { |
| 114 | next_object_id = 0; | 114 | next_object_id = 0; |
| 115 | next_process_id = 10; | 115 | next_process_id = Process::ProcessIDMin; |
| 116 | next_thread_id = 1; | 116 | next_thread_id = 1; |
| 117 | 117 | ||
| 118 | process_list.clear(); | 118 | process_list.clear(); |
| @@ -153,9 +153,7 @@ struct KernelCore::Impl { | |||
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | std::atomic<u32> next_object_id{0}; | 155 | std::atomic<u32> next_object_id{0}; |
| 156 | // TODO(Subv): Start the process ids from 10 for now, as lower PIDs are | 156 | std::atomic<u64> next_process_id{Process::ProcessIDMin}; |
| 157 | // reserved for low-level services | ||
| 158 | std::atomic<u64> next_process_id{10}; | ||
| 159 | std::atomic<u64> next_thread_id{1}; | 157 | std::atomic<u64> next_thread_id{1}; |
| 160 | 158 | ||
| 161 | // Lists all processes that exist in the current session. | 159 | // Lists all processes that exist in the current session. |