diff options
| author | 2017-12-29 13:27:58 -0500 | |
|---|---|---|
| committer | 2017-12-29 13:27:58 -0500 | |
| commit | ebd4b1422d55c9affc38e8133e897e39684e9ccb (patch) | |
| tree | 53513cb3d4e28493173a3f708764a4924654ba91 /src/core/hle/kernel/thread.h | |
| parent | applet_oe: Stub out a bunch of interfaces necessary for boot. (diff) | |
| download | yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.gz yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.tar.xz yuzu-ebd4b1422d55c9affc38e8133e897e39684e9ccb.zip | |
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: | |||
| 65 | * @return A shared pointer to the newly created thread | 65 | * @return A shared pointer to the newly created thread |
| 66 | */ | 66 | */ |
| 67 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, u32 priority, | 67 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, u32 priority, |
| 68 | u32 arg, s32 processor_id, VAddr stack_top, | 68 | u64 arg, s32 processor_id, VAddr stack_top, |
| 69 | SharedPtr<Process> owner_process); | 69 | SharedPtr<Process> owner_process); |
| 70 | 70 | ||
| 71 | std::string GetName() const override { | 71 | std::string GetName() const override { |
| @@ -234,7 +234,7 @@ private: | |||
| 234 | * @param owner_process The parent process for the main thread | 234 | * @param owner_process The parent process for the main thread |
| 235 | * @return A shared pointer to the main thread | 235 | * @return A shared pointer to the main thread |
| 236 | */ | 236 | */ |
| 237 | SharedPtr<Thread> SetupMainThread(u32 entry_point, u32 priority, SharedPtr<Process> owner_process); | 237 | SharedPtr<Thread> SetupMainThread(VAddr entry_point, u32 priority, SharedPtr<Process> owner_process); |
| 238 | 238 | ||
| 239 | /** | 239 | /** |
| 240 | * Returns whether there are any threads that are ready to run. | 240 | * Returns whether there are any threads that are ready to run. |