Make VFS test environment build again.

This commit is contained in:
Andreas Kling 2018-11-07 12:05:51 +01:00
commit 981a3ae4b3
Notes: sideshowbarker 2024-07-19 18:32:34 +09:00
12 changed files with 40 additions and 34 deletions

View file

@ -48,7 +48,7 @@ static DWORD handle(RegisterDump& regs, DWORD function, DWORD arg1, DWORD arg2,
ASSERT_INTERRUPTS_ENABLED();
switch (function) {
case Syscall::SC_yield:
yield();
sched_yield();
break;
case Syscall::SC_putch:
Console::the().putChar(arg1 & 0xff);