summaryrefslogtreecommitdiff
path: root/src/core/core_cpu.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-03-29 17:09:10 -0400
committerGravatar FernandoS272019-10-15 11:55:07 -0400
commit47c6c78c031b33af877a64aa1da2705558ab02c2 (patch)
tree9e04faeaf19f5f7b2c50664b9d4a5a4e47e4f4e6 /src/core/core_cpu.h
parentAdd interfacing to the Global Scheduler (diff)
downloadyuzu-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.h2
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
14namespace Kernel { 14namespace Kernel {
15class Scheduler; 15class Scheduler;
16class GlobalScheduler;
16} 17}
17 18
18namespace Core { 19namespace 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