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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 305275387..20b4e401c 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -13,6 +13,7 @@
13#include "common/bit_field.h" 13#include "common/bit_field.h"
14#include "common/common_types.h" 14#include "common/common_types.h"
15#include "core/hle/kernel/kernel.h" 15#include "core/hle/kernel/kernel.h"
16#include "core/hle/kernel/thread.h"
16#include "core/hle/kernel/vm_manager.h" 17#include "core/hle/kernel/vm_manager.h"
17 18
18namespace Kernel { 19namespace Kernel {
@@ -127,6 +128,9 @@ public:
127 u16 kernel_version = 0; 128 u16 kernel_version = 0;
128 /// The default CPU for this process, threads are scheduled on this cpu by default. 129 /// The default CPU for this process, threads are scheduled on this cpu by default.
129 u8 ideal_processor = 0; 130 u8 ideal_processor = 0;
131 /// Bitmask of allowed CPUs that this process' threads can run on. TODO(Subv): Actually parse
132 /// this value from the process header.
133 u32 allowed_processor_mask = THREADPROCESSORID_DEFAULT_MASK;
130 /// Current status of the process 134 /// Current status of the process
131 ProcessStatus status; 135 ProcessStatus status;
132 136