diff options
| author | 2019-07-07 04:13:56 -0400 | |
|---|---|---|
| committer | 2019-07-07 14:08:25 -0400 | |
| commit | eb6f55d880f2c749d651290a3d1b6e8682563a67 (patch) | |
| tree | c4d11cac3ddc8f0717734aa650abb7553759a65b /src/core/hle/kernel/process.h | |
| parent | Merge pull request #2674 from lioncash/reporter (diff) | |
| download | yuzu-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.h | 3 |
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 | ||