diff options
| author | 2018-12-18 22:16:53 -0500 | |
|---|---|---|
| committer | 2018-12-18 22:28:55 -0500 | |
| commit | 9b3a38e3d331b2fb647cd7286dad51d7051bdf64 (patch) | |
| tree | b7b3508d540b5d9959a6873dde414fb7be8fc5d8 /src/core/hle/kernel/kernel.h | |
| parent | Merge pull request #1905 from bunnei/ignore-empty-gpu-lists (diff) | |
| download | yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.gz yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.xz yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.zip | |
kernel/process: Make process_id a 64-bit value
In the actual kernel, this is a 64-bit value, so we shouldn't be using a
32-bit type to handle it.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index ea00c89f5..4f0f2331c 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -88,7 +88,7 @@ private: | |||
| 88 | u32 CreateNewObjectID(); | 88 | u32 CreateNewObjectID(); |
| 89 | 89 | ||
| 90 | /// Creates a new process ID, incrementing the internal process ID counter; | 90 | /// Creates a new process ID, incrementing the internal process ID counter; |
| 91 | u32 CreateNewProcessID(); | 91 | u64 CreateNewProcessID(); |
| 92 | 92 | ||
| 93 | /// Creates a new thread ID, incrementing the internal thread ID counter. | 93 | /// Creates a new thread ID, incrementing the internal thread ID counter. |
| 94 | u32 CreateNewThreadID(); | 94 | u32 CreateNewThreadID(); |