scheduler: Cleanup based on PR feedback.

This commit is contained in:
bunnei 2018-02-19 16:46:42 -05:00
parent ac81c02ed9
commit 8db80d8389
3 changed files with 4 additions and 5 deletions

View file

@ -8,7 +8,7 @@
namespace Kernel {
Scheduler::Scheduler(std::shared_ptr<ARM_Interface> cpu_core) : cpu_core(cpu_core) {}
Scheduler::Scheduler(ARM_Interface* cpu_core) : cpu_core(cpu_core) {}
Scheduler::~Scheduler() {
for (auto& thread : thread_list) {