scheduler: Cleanup based on PR feedback.

This commit is contained in:
bunnei
2018-02-19 16:46:42 -05:00
parent 1f3b456e6c
commit 654147d3ba
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) {