TODO figure out why schedrelease() messes with terminal proc's ring buffer

This commit is contained in:
2025-09-20 01:19:20 +02:00
parent 8269e097d6
commit a1b3d4efa4
2 changed files with 5 additions and 9 deletions

View File

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