diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-28 23:26:09 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-28 23:26:12 +0100 |
commit | 427f1e3e3da5709e74bf4db674a019d9d79f2ed3 (patch) | |
tree | 8246ad8801f4dc696462b1893aad95d1010e4176 /src/core/hle/kernel/process.h | |
parent | kernel/process: Ensure that given stack size is always page-aligned (diff) | |
download | yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar.gz yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar.bz2 yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar.lz yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar.xz yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.tar.zst yuzu-427f1e3e3da5709e74bf4db674a019d9d79f2ed3.zip |
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r-- | src/core/hle/kernel/process.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index a0217d3d8..db14dd4b4 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -210,7 +210,7 @@ public: /** * Applies address space changes and launches the process main thread. */ - void Run(VAddr entry_point, s32 main_thread_priority, u32 stack_size); + void Run(VAddr entry_point, s32 main_thread_priority, u64 stack_size); /** * Prepares a process for termination by stopping all of its threads |