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/fork.c | 7 ------- src/userspace/libc/unistd/spawn.c | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 src/userspace/libc/unistd/fork.c create mode 100644 src/userspace/libc/unistd/spawn.c (limited to 'src/userspace/libc/unistd') diff --git a/src/userspace/libc/unistd/fork.c b/src/userspace/libc/unistd/fork.c deleted file mode 100644 index 6ca054a..0000000 --- a/src/userspace/libc/unistd/fork.c +++ /dev/null @@ -1,7 +0,0 @@ -#include -#include - -u32 fork() -{ - return syscall_fork(); -} \ No newline at end of file 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