diff options
| author | 2016-04-17 14:01:40 -0500 | |
|---|---|---|
| committer | 2016-05-07 10:23:03 -0500 | |
| commit | 5b7f86708cd72b5d42b16ba4a0cc348dc83129d1 (patch) | |
| tree | ff6250a8839ac14398c761ca161299ce3f28916f /src/core/hle/kernel/process.h | |
| parent | Merge pull request #1685 from lioncash/hdr (diff) | |
| download | yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.gz yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.xz yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.zip | |
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).
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -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: | |||
| 107 | ProcessFlags flags; | 107 | ProcessFlags flags; |
| 108 | /// Kernel compatibility version for this process | 108 | /// Kernel compatibility version for this process |
| 109 | u16 kernel_version = 0; | 109 | u16 kernel_version = 0; |
| 110 | /// The default CPU for this process, threads are scheduled on this cpu by default. | ||
| 111 | u8 ideal_processor = 0; | ||
| 110 | 112 | ||
| 111 | /// The id of this process | 113 | /// The id of this process |
| 112 | u32 process_id = next_process_id++; | 114 | u32 process_id = next_process_id++; |