diff options
author | Subv <subv2112@gmail.com> | 2016-04-17 21:01:40 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-05-07 17:23:03 +0200 |
commit | 5b7f86708cd72b5d42b16ba4a0cc348dc83129d1 (patch) | |
tree | ff6250a8839ac14398c761ca161299ce3f28916f /src/core/hle/kernel | |
parent | Merge pull request #1685 from lioncash/hdr (diff) | |
download | yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.gz yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.bz2 yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.lz yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.xz yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.tar.zst yuzu-5b7f86708cd72b5d42b16ba4a0cc348dc83129d1.zip |
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++; |