aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-07 04:13:56 -0400
committerLioncash <mathew1800@gmail.com>2019-07-07 14:08:25 -0400
commiteb6f55d880f2c749d651290a3d1b6e8682563a67 (patch)
treec4d11cac3ddc8f0717734aa650abb7553759a65b /src/core/hle/kernel/process.h
parent9e689a81f8a6ea543ed56f2dbd90641c1b6502a9 (diff)
kernel/process: Move main thread stack allocation to its own function
Keeps this particular set of behavior isolated to its own function.
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h3
1 files changed, 3 insertions, 0 deletions
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;