From 41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57 Mon Sep 17 00:00:00 2001 From: Subv Date: Mon, 11 May 2015 09:15:10 -0500 Subject: Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread --- src/core/hle/kernel/process.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/core/hle/kernel/process.h') diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 88ed9a5a..11c2ad12 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -55,6 +55,14 @@ public: static const HandleType HANDLE_TYPE = HandleType::Process; HandleType GetHandleType() const override { return HANDLE_TYPE; } + 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 @@ -69,6 +77,9 @@ public: boost::container::static_vector address_mappings; ProcessFlags flags; + /// The id of this process + u32 process_id = next_process_id++; + /** * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them * to this process. -- cgit v1.2.3