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 ee559fe4c..16193ca56 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -250,6 +250,9 @@ private: | |||
| 250 | /// Size of the main thread's stack in bytes. | 250 | /// Size of the main thread's stack in bytes. |
| 251 | u64 main_thread_stack_size = 0; | 251 | u64 main_thread_stack_size = 0; |
| 252 | 252 | ||
| 253 | /// Size of the loaded code memory in bytes. | ||
| 254 | u64 code_memory_size = 0; | ||
| 255 | |||
| 253 | /// Current status of the process | 256 | /// Current status of the process |
| 254 | ProcessStatus status; | 257 | ProcessStatus status; |
| 255 | 258 | ||