Correct compiling errors and addapt to the new interface.

This commit is contained in:
Fernando Sahmkow
2019-03-29 17:12:02 -04:00
committed by FernandoS27
parent 9031502974
commit b8b7ebcece
3 changed files with 15 additions and 27 deletions

View File

@ -66,10 +66,7 @@ std::vector<std::unique_ptr<WaitTreeThread>> WaitTreeItem::MakeThreadItemList()
};
const auto& system = Core::System::GetInstance();
add_threads(system.Scheduler(0).GetThreadList());
add_threads(system.Scheduler(1).GetThreadList());
add_threads(system.Scheduler(2).GetThreadList());
add_threads(system.Scheduler(3).GetThreadList());
add_threads(system.GlobalScheduler().GetThreadList());
return item_list;
}