Disable kernel preemption, fix requesting rescheduling
All checks were successful
Build documentation / build-and-deploy (push) Successful in 29s

This commit is contained in:
2026-01-22 19:32:15 +01:00
parent c26fd3cb2b
commit 7bb3b77ede
11 changed files with 32 additions and 27 deletions

View File

@@ -179,7 +179,7 @@ DEFINE_SYSCALL (sys_clone) {
/* int sched (void) */
DEFINE_SYSCALL (sys_sched) {
proc_sched (regs);
proc_sched ();
return ST_OK;
}