diff options
| author | bunnei <bunneidev@gmail.com> | 2017-12-29 13:27:58 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2017-12-29 13:27:58 -0500 |
| commit | ebd4b1422d55c9affc38e8133e897e39684e9ccb (patch) | |
| tree | 53513cb3d4e28493173a3f708764a4924654ba91 /src/core/hle/kernel/thread.h | |
| parent | 1d01ffccb8a3435d092ab61b4043b41dc5a70eaa (diff) | |
kernel: Various 64-bit fixes in memory/process/thread
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<SharedPtr<Thread>> 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<Process> 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<Thread> SetupMainThread(u32 entry_point, u32 priority, SharedPtr<Process> owner_process); +SharedPtr<Thread> SetupMainThread(VAddr entry_point, u32 priority, SharedPtr<Process> owner_process); /** * Returns whether there are any threads that are ready to run. |
