summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-28 23:30:58 +0100
committerLioncash <mathew1800@gmail.com>2019-03-28 23:45:06 +0100
commit5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e (patch)
tree54b555ab1521f9776d1247b0a108485030594a34 /src/core/hle/kernel/process.cpp
parentkernel/process: Make Run's stack size parameter a u64 (diff)
downloadyuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar.gz
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar.bz2
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar.lz
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar.xz
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.tar.zst
yuzu-5d4ab5ec2fe36fa06d3adccb66261a4a8077c74e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/process.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index f18789a60..bb2673732 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -110,15 +110,15 @@ ResultCode Process::LoadFromMetadata(const FileSys::ProgramMetadata& metadata) {
void Process::Run(VAddr entry_point, s32 main_thread_priority, u64 stack_size) {
// The kernel always ensures that the given stack size is page aligned.
- stack_size = Common::AlignUp(stack_size, Memory::PAGE_SIZE);
+ main_thread_stack_size = Common::AlignUp(stack_size, Memory::PAGE_SIZE);
// Allocate and map the main thread stack
// TODO(bunnei): This is heap area that should be allocated by the kernel and not mapped as part
// of the user address space.
+ const VAddr mapping_address = vm_manager.GetTLSIORegionEndAddress() - main_thread_stack_size;
vm_manager
- .MapMemoryBlock(vm_manager.GetTLSIORegionEndAddress() - stack_size,
- std::make_shared<std::vector<u8>>(stack_size, 0), 0, stack_size,
- MemoryState::Stack)
+ .MapMemoryBlock(mapping_address, std::make_shared<std::vector<u8>>(main_thread_stack_size),
+ 0, main_thread_stack_size, MemoryState::Stack)
.Unwrap();
vm_manager.LogLayout();