diff options
| author | bunnei <bunneidev@gmail.com> | 2018-01-16 18:27:48 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-16 18:27:48 -0500 |
| commit | 1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d (patch) | |
| tree | 160c4a53715012ad8cb16c0738240d9530af4739 /src/core/hle/kernel/process.h | |
| parent | 0f6e3421c88935a6769304aab4d1631fa2ff4574 (diff) | |
| parent | cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7 (diff) | |
Merge pull request #52 from ogniK5377/fsp
added more svcGetInfo pairs for 3.0.0+ support, Changed HEAP_SIZE and TLS_AREA_VADDR. changed mem usage & heap usage stub added, ISelfController, IApplication function stubs. Added SetThreadCoreMask
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 20b4e401c..add98472f 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -131,6 +131,8 @@ public: /// Bitmask of allowed CPUs that this process' threads can run on. TODO(Subv): Actually parse /// this value from the process header. u32 allowed_processor_mask = THREADPROCESSORID_DEFAULT_MASK; + u32 allowed_thread_priority_mask = 0xFFFFFFFF; + u32 is_virtual_address_memory_enabled = 0; /// Current status of the process ProcessStatus status; |
