diff options
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 88ed9a5a5..22cd1049b 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -55,6 +55,8 @@ public: | |||
| 55 | static const HandleType HANDLE_TYPE = HandleType::Process; | 55 | static const HandleType HANDLE_TYPE = HandleType::Process; |
| 56 | HandleType GetHandleType() const override { return HANDLE_TYPE; } | 56 | HandleType GetHandleType() const override { return HANDLE_TYPE; } |
| 57 | 57 | ||
| 58 | static u32 next_process_id; | ||
| 59 | |||
| 58 | /// Name of the process | 60 | /// Name of the process |
| 59 | std::string name; | 61 | std::string name; |
| 60 | /// Title ID corresponding to the process | 62 | /// Title ID corresponding to the process |
| @@ -69,6 +71,9 @@ public: | |||
| 69 | boost::container::static_vector<AddressMapping, 8> address_mappings; | 71 | boost::container::static_vector<AddressMapping, 8> address_mappings; |
| 70 | ProcessFlags flags; | 72 | ProcessFlags flags; |
| 71 | 73 | ||
| 74 | /// The id of this process | ||
| 75 | u32 process_id = next_process_id++; | ||
| 76 | |||
| 72 | /** | 77 | /** |
| 73 | * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them | 78 | * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them |
| 74 | * to this process. | 79 | * to this process. |