summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-12-29 19:27:58 +0100
committerbunnei <bunneidev@gmail.com>2017-12-29 19:27:58 +0100
commitebd4b1422d55c9affc38e8133e897e39684e9ccb (patch)
tree53513cb3d4e28493173a3f708764a4924654ba91 /src/core/hle/kernel/thread.h
parentapplet_oe: Stub out a bunch of interfaces necessary for boot. (diff)
downloadyuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.gz
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.bz2
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.lz
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.xz
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.zst
yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.h4
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.