diff options
| author | 2019-03-29 17:09:10 -0400 | |
|---|---|---|
| committer | 2019-10-15 11:55:07 -0400 | |
| commit | 47c6c78c031b33af877a64aa1da2705558ab02c2 (patch) | |
| tree | 9e04faeaf19f5f7b2c50664b9d4a5a4e47e4f4e6 /src/core/core_cpu.h | |
| parent | Add interfacing to the Global Scheduler (diff) | |
| download | yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.gz yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.xz yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.zip | |
Redesign CPU Cores to work with the new scheduler
Diffstat (limited to 'src/core/core_cpu.h')
| -rw-r--r-- | src/core/core_cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/core_cpu.h b/src/core/core_cpu.h index 7589beb8c..5dde2994c 100644 --- a/src/core/core_cpu.h +++ b/src/core/core_cpu.h | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | namespace Kernel { | 14 | namespace Kernel { |
| 15 | class Scheduler; | 15 | class Scheduler; |
| 16 | class GlobalScheduler; | ||
| 16 | } | 17 | } |
| 17 | 18 | ||
| 18 | namespace Core { | 19 | namespace Core { |
| @@ -90,6 +91,7 @@ private: | |||
| 90 | 91 | ||
| 91 | std::unique_ptr<ARM_Interface> arm_interface; | 92 | std::unique_ptr<ARM_Interface> arm_interface; |
| 92 | CpuBarrier& cpu_barrier; | 93 | CpuBarrier& cpu_barrier; |
| 94 | Kernel::GlobalScheduler& global_scheduler; | ||
| 93 | std::unique_ptr<Kernel::Scheduler> scheduler; | 95 | std::unique_ptr<Kernel::Scheduler> scheduler; |
| 94 | Timing::CoreTiming& core_timing; | 96 | Timing::CoreTiming& core_timing; |
| 95 | 97 | ||