diff options
author | Marvin Borner | 2020-05-09 17:39:31 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-09 17:39:31 +0200 |
commit | 09a66e91ec9e8a677aa48f27798753084f213713 (patch) | |
tree | 9685a13b459e60d830179c565417ed72ae855ebe /src/userspace/libc/syscall.h | |
parent | 3a97fef4bb4780e4bc2423699063d40cbf5da923 (diff) |
Replaced fork() with spawn()!
Who needs forks anyway
Diffstat (limited to 'src/userspace/libc/syscall.h')
-rw-r--r-- | src/userspace/libc/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h index bd9d38d..cb1551a 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_SYSCALL1(spawn, char *); + DECL_SYSCALL3(wait, u32, u32 *, u32); DECL_SYSCALL0(get_pid); |