mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 20:37:58 -05:00
kernel/process: Store the main thread stack size to a data member
This will be necessary in order to properly report memory usage within svcGetInfo.
This commit is contained in:
@ -247,6 +247,9 @@ private:
|
||||
/// Memory manager for this process.
|
||||
Kernel::VMManager vm_manager;
|
||||
|
||||
/// Size of the main thread's stack in bytes.
|
||||
u64 main_thread_stack_size = 0;
|
||||
|
||||
/// Current status of the process
|
||||
ProcessStatus status;
|
||||
|
||||
|
Reference in New Issue
Block a user