aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/syscall.h
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 14:29:28 +0200
committerMarvin Borner2020-05-07 14:29:28 +0200
commit130121dd61a9adf70d1800ceb03007275bfb589d (patch)
tree5b00d9046c5f5a5678479b0ddf1bdbe72bc74158 /src/userspace/libc/syscall.h
parent31767b532e69c5a63df0106fa08e137e3106a449 (diff)
Added wait syscall
Diffstat (limited to 'src/userspace/libc/syscall.h')
-rw-r--r--src/userspace/libc/syscall.h2
1 files changed, 2 insertions, 0 deletions
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);