diff options
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/process.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 9dabe3568..f45cb5674 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -382,12 +382,6 @@ private: | |||
| 382 | /// List of threads waiting for a condition variable | 382 | /// List of threads waiting for a condition variable |
| 383 | std::unordered_map<VAddr, std::list<std::shared_ptr<Thread>>> cond_var_threads; | 383 | std::unordered_map<VAddr, std::list<std::shared_ptr<Thread>>> cond_var_threads; |
| 384 | 384 | ||
| 385 | /// System context | ||
| 386 | Core::System& system; | ||
| 387 | |||
| 388 | /// Name of this process | ||
| 389 | std::string name; | ||
| 390 | |||
| 391 | /// Address of the top of the main thread's stack | 385 | /// Address of the top of the main thread's stack |
| 392 | VAddr main_thread_stack_top{}; | 386 | VAddr main_thread_stack_top{}; |
| 393 | 387 | ||
| @@ -399,6 +393,12 @@ private: | |||
| 399 | 393 | ||
| 400 | /// Process total image size | 394 | /// Process total image size |
| 401 | std::size_t image_size{}; | 395 | std::size_t image_size{}; |
| 396 | |||
| 397 | /// Name of this process | ||
| 398 | std::string name; | ||
| 399 | |||
| 400 | /// System context | ||
| 401 | Core::System& system; | ||
| 402 | }; | 402 | }; |
| 403 | 403 | ||
| 404 | } // namespace Kernel | 404 | } // namespace Kernel |