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/unistd.h | |
parent | 31767b532e69c5a63df0106fa08e137e3106a449 (diff) |
Added wait syscall
Diffstat (limited to 'src/userspace/libc/unistd.h')
-rw-r--r-- | src/userspace/libc/unistd.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 |