[Zion] Remove sleeping messages.

This commit is contained in:
Drew Galbraith 2023-11-15 16:27:09 -08:00
parent 1ccbf5e12e
commit 46d02e5eae
2 changed files with 0 additions and 2 deletions

View File

@ -83,7 +83,6 @@ void Scheduler::Yield() {
} else {
if (runnable_threads_.size() == 0) {
current_thread_ = sleep_thread_;
dbgln("Sleeping");
} else {
current_thread_ = runnable_threads_.PopFront();
}

View File

@ -58,7 +58,6 @@ extern "C" void zion() {
gScheduler->Enable();
gScheduler->Yield();
dbgln("Sleeping!");
while (1)
;
}