diff options
author | Marvin Borner | 2020-05-07 14:29:28 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 14:29:28 +0200 |
commit | 130121dd61a9adf70d1800ceb03007275bfb589d (patch) | |
tree | 5b00d9046c5f5a5678479b0ddf1bdbe72bc74158 /src/userspace/libc/syscall.c | |
parent | 31767b532e69c5a63df0106fa08e137e3106a449 (diff) |
Added wait syscall
Diffstat (limited to 'src/userspace/libc/syscall.c')
-rw-r--r-- | src/userspace/libc/syscall.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c index d5c6708..4b5c200 100644 --- a/src/userspace/libc/syscall.c +++ b/src/userspace/libc/syscall.c @@ -17,6 +17,8 @@ DEFN_SYSCALL4(write, SYS_WRITE, char *, u32, u32, u8 *); DEFN_SYSCALL1(exec, SYS_EXEC, char *); +DEFN_SYSCALL3(wait, SYS_WAIT, u32, u32 *, u32); + DEFN_SYSCALL0(get_pid, SYS_GET_PID); DEFN_SYSCALL1(malloc, SYS_MALLOC, u32); |