From 7ad20154fc9bf1094f78721fed13fac1436bef17 Mon Sep 17 00:00:00 2001 From: Subv Date: Wed, 10 Jan 2018 00:58:25 -0500 Subject: Threads: Added enum values for the Switch's 4 cpu cores and implemented svcGetInfo(AllowedCpuIdBitmask) --- src/core/hle/kernel/process.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle/kernel/process.h') 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 @@ #include "common/bit_field.h" #include "common/common_types.h" #include "core/hle/kernel/kernel.h" +#include "core/hle/kernel/thread.h" #include "core/hle/kernel/vm_manager.h" namespace Kernel { @@ -127,6 +128,9 @@ public: u16 kernel_version = 0; /// The default CPU for this process, threads are scheduled on this cpu by default. u8 ideal_processor = 0; + /// 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; /// Current status of the process ProcessStatus status; -- cgit v1.2.3