summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-10 06:58:25 +0100
committerSubv <subv2112@gmail.com>2018-01-10 07:01:55 +0100
commit7ad20154fc9bf1094f78721fed13fac1436bef17 (patch)
tree7c49bbaee40560ffac1a0a5f8a869df23f0dba71 /src/core/hle/kernel/process.h
parentServices: Allow lm to log single-character messages. (diff)
downloadyuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar.gz
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar.bz2
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar.lz
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar.xz
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.tar.zst
yuzu-7ad20154fc9bf1094f78721fed13fac1436bef17.zip
Diffstat (limited to '')
-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 @@
#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;