diff options
author | Subv <subv2112@gmail.com> | 2015-05-11 16:15:10 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-05-11 16:15:10 +0200 |
commit | 41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57 (patch) | |
tree | b9500ee328f5b918edca38251878c4f346a30807 /src/core/hle/kernel/process.h | |
parent | Merge pull request #740 from yuriks/gsp-shmem (diff) | |
download | yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.gz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.bz2 yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.lz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.xz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.zst yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.zip |
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r-- | src/core/hle/kernel/process.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 88ed9a5a5..11c2ad12d 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<AddressMapping, 8> 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. |