summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h2
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:
131 /// Bitmask of allowed CPUs that this process' threads can run on. TODO(Subv): Actually parse 131 /// Bitmask of allowed CPUs that this process' threads can run on. TODO(Subv): Actually parse
132 /// this value from the process header. 132 /// this value from the process header.
133 u32 allowed_processor_mask = THREADPROCESSORID_DEFAULT_MASK; 133 u32 allowed_processor_mask = THREADPROCESSORID_DEFAULT_MASK;
134 u32 allowed_thread_priority_mask = 0xFFFFFFFF;
135 u32 is_virtual_address_memory_enabled = 0;
134 /// Current status of the process 136 /// Current status of the process
135 ProcessStatus status; 137 ProcessStatus status;
136 138