Scheduler: Fix bitrotted SCHEDULER_RUNNABLE_DEBUG code

The runnable lists have moved from Thread to Scheduler.
This commit is contained in:
Andreas Kling 2019-08-01 20:00:45 +02:00
commit 55d6efd485
Notes: sideshowbarker 2024-07-19 12:57:07 +09:00

View file

@ -375,14 +375,14 @@ bool Scheduler::pick_next()
#ifdef SCHEDULER_RUNNABLE_DEBUG
dbgprintf("Non-runnables:\n");
Thread::for_each_nonrunnable([](Thread& thread) -> IterationDecision {
Scheduler::for_each_nonrunnable([](Thread& thread) -> IterationDecision {
auto& process = thread.process();
dbgprintf("[K%x] %-12s %s(%u:%u) @ %w:%x\n", &process, thread.state_string(), process.name().characters(), process.pid(), thread.tid(), thread.tss().cs, thread.tss().eip);
return IterationDecision::Continue;
});
dbgprintf("Runnables:\n");
Thread::for_each_runnable([](Thread& thread) -> IterationDecision {
Scheduler::for_each_runnable([](Thread& thread) -> IterationDecision {
auto& process = thread.process();
dbgprintf("[K%x] %-12s %s(%u:%u) @ %w:%x\n", &process, thread.state_string(), process.name().characters(), process.pid(), thread.tid(), thread.tss().cs, thread.tss().eip);
return IterationDecision::Continue;