From 09a66e91ec9e8a677aa48f27798753084f213713 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 9 May 2020 17:39:31 +0200 Subject: Replaced fork() with spawn()! Who needs forks anyway --- src/userspace/libc/unistd/spawn.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/userspace/libc/unistd/spawn.c (limited to 'src/userspace/libc/unistd/spawn.c') diff --git a/src/userspace/libc/unistd/spawn.c b/src/userspace/libc/unistd/spawn.c new file mode 100644 index 0000000..91ed340 --- /dev/null +++ b/src/userspace/libc/unistd/spawn.c @@ -0,0 +1,7 @@ +#include +#include + +u32 spawn(char *path) +{ + return syscall_spawn(path); +} \ No newline at end of file -- cgit v1.2.3