From ebd4b1422d55c9affc38e8133e897e39684e9ccb Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 29 Dec 2017 13:27:58 -0500 Subject: kernel: Various 64-bit fixes in memory/process/thread --- src/core/hle/kernel/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hle/kernel/thread.h') diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index fafcab156..25d678ba3 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -65,7 +65,7 @@ public: * @return A shared pointer to the newly created thread */ static ResultVal> Create(std::string name, VAddr entry_point, u32 priority, - u32 arg, s32 processor_id, VAddr stack_top, + u64 arg, s32 processor_id, VAddr stack_top, SharedPtr owner_process); std::string GetName() const override { @@ -234,7 +234,7 @@ private: * @param owner_process The parent process for the main thread * @return A shared pointer to the main thread */ -SharedPtr SetupMainThread(u32 entry_point, u32 priority, SharedPtr owner_process); +SharedPtr SetupMainThread(VAddr entry_point, u32 priority, SharedPtr owner_process); /** * Returns whether there are any threads that are ready to run. -- cgit v1.2.3