[zion] Don't dump process states on sleep
This commit is contained in:
parent
083ed52ddd
commit
3110087498
|
@ -86,7 +86,6 @@ void Scheduler::Yield() {
|
||||||
if (runnable_threads_.size() == 0) {
|
if (runnable_threads_.size() == 0) {
|
||||||
current_thread_ = sleep_thread_;
|
current_thread_ = sleep_thread_;
|
||||||
dbgln("Sleeping");
|
dbgln("Sleeping");
|
||||||
gProcMan->DumpProcessStates();
|
|
||||||
} else {
|
} else {
|
||||||
current_thread_ = runnable_threads_.PopFront();
|
current_thread_ = runnable_threads_.PopFront();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue