These changes were lying around uncommitted in the old repo.

I'm just gonna commit them without too much thinking and then take
it from there.
This commit is contained in:
Andreas Kling 2018-10-16 11:06:35 +02:00
commit 72bb80a9ae
Notes: sideshowbarker 2024-07-19 18:47:40 +09:00
8 changed files with 94 additions and 81 deletions

View file

@ -102,7 +102,7 @@ DWORD handle(DWORD function, DWORD arg1, DWORD arg2, DWORD arg3)
kprintf( "%c", arg1 & 0xFF );
break;
case Syscall::Sleep:
kprintf("syscall: sleep(%d)\n", arg1);
//kprintf("syscall: sleep(%d)\n", arg1);
current->sys$sleep(arg1);
break;
case Syscall::PosixOpen: