Make syscalls accept their interrupt frame, remove useless intr_eoi() param

This commit is contained in:
2025-09-20 00:28:28 +02:00
parent 81dc694a23
commit dcc68154b2
4 changed files with 22 additions and 22 deletions

View File

@ -11,9 +11,7 @@ int32_t SYSCALL0(sys_schedrelease) {
Proc *proc = PROCS.current;
spinlock_release(&PROCS.spinlock);
if (INTR_CURRENT_FRAME != NULL) {
proc_sched((void *)INTR_CURRENT_FRAME);
}
proc_sched((void *)frame);
return E_OK;
}