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/unistd | |
parent | 3a97fef4bb4780e4bc2423699063d40cbf5da923 (diff) |
Replaced fork() with spawn()!
Who needs forks anyway
Diffstat (limited to 'src/userspace/libc/unistd')
-rw-r--r-- | src/userspace/libc/unistd/fork.c | 7 | ||||
-rw-r--r-- | src/userspace/libc/unistd/spawn.c | 7 |
2 files changed, 7 insertions, 7 deletions
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 <stdint.h> -#include <syscall.h> - -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 <stdint.h> +#include <syscall.h> + +u32 spawn(char *path) +{ + return syscall_spawn(path); +}
\ No newline at end of file |