diff options
| author | 2018-12-18 22:37:01 -0500 | |
|---|---|---|
| committer | 2018-12-18 22:37:03 -0500 | |
| commit | 8435451093b193c1a1556a9edadc5663d3372b02 (patch) | |
| tree | a162bf2b2482784bb1fe69ea27bc64c9d49c3424 /src/core/hle/kernel/kernel.cpp | |
| parent | kernel/svc: Correct output parameter for svcGetProcessId (diff) | |
| download | yuzu-8435451093b193c1a1556a9edadc5663d3372b02.tar.gz yuzu-8435451093b193c1a1556a9edadc5663d3372b02.tar.xz yuzu-8435451093b193c1a1556a9edadc5663d3372b02.zip | |
kernel/thread: Make thread_id a 64-bit value
The kernel uses a 64-bit value for the thread ID, so we shouldn't be
using a 32-bit value.
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index a221734c1..2be39fb52 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -156,7 +156,7 @@ struct KernelCore::Impl { | |||
| 156 | // TODO(Subv): Start the process ids from 10 for now, as lower PIDs are | 156 | // TODO(Subv): Start the process ids from 10 for now, as lower PIDs are |
| 157 | // reserved for low-level services | 157 | // reserved for low-level services |
| 158 | std::atomic<u64> next_process_id{10}; | 158 | std::atomic<u64> next_process_id{10}; |
| 159 | std::atomic<u32> next_thread_id{1}; | 159 | std::atomic<u64> next_thread_id{1}; |
| 160 | 160 | ||
| 161 | // Lists all processes that exist in the current session. | 161 | // Lists all processes that exist in the current session. |
| 162 | std::vector<SharedPtr<Process>> process_list; | 162 | std::vector<SharedPtr<Process>> process_list; |
| @@ -242,7 +242,7 @@ u32 KernelCore::CreateNewObjectID() { | |||
| 242 | return impl->next_object_id++; | 242 | return impl->next_object_id++; |
| 243 | } | 243 | } |
| 244 | 244 | ||
| 245 | u32 KernelCore::CreateNewThreadID() { | 245 | u64 KernelCore::CreateNewThreadID() { |
| 246 | return impl->next_thread_id++; | 246 | return impl->next_thread_id++; |
| 247 | } | 247 | } |
| 248 | 248 | ||