diff options
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 | ||