summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorGravatar Lioncash2019-07-07 04:13:56 -0400
committerGravatar Lioncash2019-07-07 14:08:25 -0400
commiteb6f55d880f2c749d651290a3d1b6e8682563a67 (patch)
treec4d11cac3ddc8f0717734aa650abb7553759a65b /src/core/hle/kernel/process.h
parentMerge pull request #2674 from lioncash/reporter (diff)
downloadyuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.gz
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.xz
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.zip
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:
280 /// a process signal. 280 /// a process signal.
281 void ChangeStatus(ProcessStatus new_status); 281 void ChangeStatus(ProcessStatus new_status);
282 282
283 /// Allocates the main thread stack for the process, given the stack size in bytes.
284 void AllocateMainThreadStack(u64 stack_size);
285
283 /// Memory manager for this process. 286 /// Memory manager for this process.
284 Kernel::VMManager vm_manager; 287 Kernel::VMManager vm_manager;
285 288