summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-07 10:13:56 +0200
committerLioncash <mathew1800@gmail.com>2019-07-07 20:08:25 +0200
commiteb6f55d880f2c749d651290a3d1b6e8682563a67 (patch)
treec4d11cac3ddc8f0717734aa650abb7553759a65b /src/core/hle/kernel/process.h
parentMerge pull request #2674 from lioncash/reporter (diff)
downloadyuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.gz
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.bz2
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.lz
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.xz
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.tar.zst
yuzu-eb6f55d880f2c749d651290a3d1b6e8682563a67.zip
Diffstat (limited to '')
-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;