From 25c010dc7dda010175da42e1184e87cd1a45cbe4 Mon Sep 17 00:00:00 2001 From: Subv Date: Mon, 11 May 2015 18:23:45 -0500 Subject: fixup! --- src/core/hle/kernel/kernel.cpp | 4 +++- src/core/hle/kernel/process.h | 6 ------ 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'src/core/hle/kernel') diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 87a0dbe3..b5c98b24 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp @@ -137,8 +137,10 @@ void Init() { Kernel::ThreadingInit(); Kernel::TimersInit(); - Process::next_process_id = 0; Object::next_object_id = 0; + // TODO(Subv): Start the process ids from 10 for now, as lower PIDs are + // reserved for low-level services + Process::next_process_id = 10; } /// Shutdown the kernel diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 11c2ad12..22cd1049 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -57,12 +57,6 @@ public: static u32 next_process_id; - /* - * Gets the process' id - * @returns The process' id - */ - u32 GetProcessId() const { return process_id; } - /// Name of the process std::string name; /// Title ID corresponding to the process -- cgit v1.2.3