Fix scheduler locking hierarchy

This commit is contained in:
2026-01-22 15:59:29 +01:00
parent fea0999726
commit c26fd3cb2b
6 changed files with 81 additions and 68 deletions

View File

@@ -60,8 +60,6 @@ struct proc {
struct proc_resources* resources;
};
void proc_suspend (struct proc* proc, struct proc_suspension_q* sq);
void proc_resume (struct proc* proc);
void proc_sched (void* regs);
void proc_kill (struct proc* proc);
bool proc_map (struct proc* proc, uintptr_t start_paddr, uintptr_t start_vaddr, size_t pages,