[Zion] Remove sleeping messages.
This commit is contained in:
parent
1ccbf5e12e
commit
46d02e5eae
|
@ -83,7 +83,6 @@ void Scheduler::Yield() {
|
||||||
} else {
|
} else {
|
||||||
if (runnable_threads_.size() == 0) {
|
if (runnable_threads_.size() == 0) {
|
||||||
current_thread_ = sleep_thread_;
|
current_thread_ = sleep_thread_;
|
||||||
dbgln("Sleeping");
|
|
||||||
} else {
|
} else {
|
||||||
current_thread_ = runnable_threads_.PopFront();
|
current_thread_ = runnable_threads_.PopFront();
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,6 @@ extern "C" void zion() {
|
||||||
gScheduler->Enable();
|
gScheduler->Enable();
|
||||||
gScheduler->Yield();
|
gScheduler->Yield();
|
||||||
|
|
||||||
dbgln("Sleeping!");
|
|
||||||
while (1)
|
while (1)
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue