tb Don't schedrelease() when reading in-pipe

This commit is contained in:
2025-09-20 10:38:36 +02:00
parent a1b3d4efa4
commit 3f0231be3f
2 changed files with 1 additions and 3 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;
}

View File

@ -134,8 +134,6 @@ void do_mode_interactive(void) {
linebuf[cursor++] = b;
uprintf("%c", b);
}
} else {
schedrelease();
}
}