kernel/Thread: move thread wake up table and callback handle into the manager

This commit is contained in:
Weiyi Wang 2018-10-23 11:57:59 -04:00
parent 0478bc3dee
commit 7fc61920cc
3 changed files with 25 additions and 24 deletions

View file

@ -22,7 +22,6 @@ KernelSystem::KernelSystem(u32 system_mode) {
resource_limits = std::make_unique<ResourceLimitList>(*this);
thread_manager = std::make_unique<ThreadManager>();
Kernel::ThreadingInit();
Kernel::TimersInit();
}