diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-03-29 17:09:10 -0400 |
|---|---|---|
| committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-10-15 11:55:07 -0400 |
| commit | 47c6c78c031b33af877a64aa1da2705558ab02c2 (patch) | |
| tree | 9e04faeaf19f5f7b2c50664b9d4a5a4e47e4f4e6 /src/core/core_cpu.h | |
| parent | 57a71f899a95ccaa2984c1cb35c083221a29fd6e (diff) | |
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 @@ 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; |
