Stack trace all black & void arg fix

This commit is contained in:
2026-03-14 09:31:57 +01:00
parent 5c0d02579b
commit e5c296238c
6 changed files with 12 additions and 8 deletions

View File

@@ -43,6 +43,11 @@ struct cpu_status_t* scheduler_schedule(struct cpu_status_t* context)
current_process = idle_proc;
}
if (current_process == idle_proc && current_process->next == NULL)
{
return idle_proc->context;
}
current_process->context = context;
//current_process->status = READY;