From 130121dd61a9adf70d1800ceb03007275bfb589d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 7 May 2020 14:29:28 +0200 Subject: Added wait syscall --- src/userspace/libc/unistd.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/userspace/libc/unistd.h') diff --git a/src/userspace/libc/unistd.h b/src/userspace/libc/unistd.h index ac0bacf..876f35c 100644 --- a/src/userspace/libc/unistd.h +++ b/src/userspace/libc/unistd.h @@ -15,4 +15,8 @@ u32 read(char *path, u32 offset, u32 count, u8 *buf); u32 write(char *path, u32 offset, u32 count, u8 *buf); +// These should be somewhere else ig +u32 wait(u32 *status); +u32 wait_pid(u32 pid, u32 *status, u32 options); + #endif \ No newline at end of file -- cgit v1.2.3