Redesign CPU Cores to work with the new scheduler

This commit is contained in:
Fernando Sahmkow 2019-03-29 17:09:10 -04:00 committed by FernandoS27
parent 57a71f899a
commit 47c6c78c03
2 changed files with 12 additions and 13 deletions

View file

@ -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;