diff options
| author | bunnei <bunneidev@gmail.com> | 2016-05-08 15:03:08 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-05-08 15:03:08 -0400 |
| commit | 282a2ad539223d61067a1957fab8c45571075987 (patch) | |
| tree | 1adb819b34340de4395ada46ac6b089cdf121b4a /src/core/hle/kernel | |
| parent | 6abc6003f50cbaec555516bbaf8fce5bbecb2ff1 (diff) | |
| parent | 5b7f86708cd72b5d42b16ba4a0cc348dc83129d1 (diff) | |
Merge pull request #1766 from Subv/log_cpu
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/process.h | 2 |
1 files changed, 2 insertions, 0 deletions
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++; |
