From 5b7f86708cd72b5d42b16ba4a0cc348dc83129d1 Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 17 Apr 2016 14:01:40 -0500 Subject: Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1). We do not currently implement any cores other than the AppCore (Core 0). --- src/core/hle/kernel/process.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/kernel') diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 6d2ca96a2..a06afef2b 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -107,6 +107,8 @@ public: ProcessFlags flags; /// Kernel compatibility version for this process u16 kernel_version = 0; + /// The default CPU for this process, threads are scheduled on this cpu by default. + u8 ideal_processor = 0; /// The id of this process u32 process_id = next_process_id++; -- cgit v1.2.3