summaryrefslogtreecommitdiffstats
path: root/src/core/core_cpu.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-03-29 22:09:10 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-10-15 17:55:07 +0200
commit47c6c78c031b33af877a64aa1da2705558ab02c2 (patch)
tree9e04faeaf19f5f7b2c50664b9d4a5a4e47e4f4e6 /src/core/core_cpu.h
parentAdd interfacing to the Global Scheduler (diff)
downloadyuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.gz
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.bz2
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.lz
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.xz
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.tar.zst
yuzu-47c6c78c031b33af877a64aa1da2705558ab02c2.zip
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 @@
namespace Kernel {
class Scheduler;
+class GlobalScheduler;
}
namespace Core {
@@ -90,6 +91,7 @@ private:
std::unique_ptr<ARM_Interface> arm_interface;
CpuBarrier& cpu_barrier;
+ Kernel::GlobalScheduler& global_scheduler;
std::unique_ptr<Kernel::Scheduler> scheduler;
Timing::CoreTiming& core_timing;