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/syscall.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/userspace/libc/syscall.h') diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h index 30925da..bd9d38d 100644 --- a/src/userspace/libc/syscall.h +++ b/src/userspace/libc/syscall.h @@ -80,6 +80,8 @@ DECL_SYSCALL4(write, char *, u32, u32, u8 *); DECL_SYSCALL1(exec, char *); +DECL_SYSCALL3(wait, u32, u32 *, u32); + DECL_SYSCALL0(get_pid); DECL_SYSCALL1(malloc, u32); -- cgit v1.2.3