From eb6f55d880f2c749d651290a3d1b6e8682563a67 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 7 Jul 2019 04:13:56 -0400 Subject: kernel/process: Move main thread stack allocation to its own function Keeps this particular set of behavior isolated to its own function. --- src/core/hle/kernel/process.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/hle/kernel/process.h') diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 83ea02bee..492d8ea4f 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -280,6 +280,9 @@ private: /// a process signal. void ChangeStatus(ProcessStatus new_status); + /// Allocates the main thread stack for the process, given the stack size in bytes. + void AllocateMainThreadStack(u64 stack_size); + /// Memory manager for this process. Kernel::VMManager vm_manager; -- cgit v1.2.3