summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-19 04:16:53 +0100
committerLioncash <mathew1800@gmail.com>2018-12-19 04:28:55 +0100
commit9b3a38e3d331b2fb647cd7286dad51d7051bdf64 (patch)
treeb7b3508d540b5d9959a6873dde414fb7be8fc5d8 /src/core/hle/kernel/kernel.cpp
parentMerge pull request #1905 from bunnei/ignore-empty-gpu-lists (diff)
downloadyuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.gz
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.bz2
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.lz
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.xz
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.zst
yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.zip
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index e441c5bc6..a221734c1 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -155,7 +155,7 @@ struct KernelCore::Impl {
std::atomic<u32> next_object_id{0};
// TODO(Subv): Start the process ids from 10 for now, as lower PIDs are
// reserved for low-level services
- std::atomic<u32> next_process_id{10};
+ std::atomic<u64> next_process_id{10};
std::atomic<u32> next_thread_id{1};
// Lists all processes that exist in the current session.
@@ -246,7 +246,7 @@ u32 KernelCore::CreateNewThreadID() {
return impl->next_thread_id++;
}
-u32 KernelCore::CreateNewProcessID() {
+u64 KernelCore::CreateNewProcessID() {
return impl->next_process_id++;
}