diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-15 01:17:00 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-15 01:30:22 +0200 |
commit | bf247fb45f0c21121281609949e5891237721d62 (patch) | |
tree | 423446a042e224a4538022583403cbe062928888 /Kernel/API | |
parent | 5f3d38445412319d1a95454d1b51706fa055b210 (diff) | |
download | serenity-bf247fb45f0c21121281609949e5891237721d62.zip |
Kernel+LibC+UserspaceEmulator: Remove sys$dup() and sys$dup2()
We can just implement these in userspace, so yay two less syscalls!
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/Syscall.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h index 398b651315..4581d0c204 100644 --- a/Kernel/API/Syscall.h +++ b/Kernel/API/Syscall.h @@ -86,8 +86,6 @@ namespace Kernel { S(getpgrp) \ S(fork) \ S(execve) \ - S(dup) \ - S(dup2) \ S(sigaction) \ S(umask) \ S(getgroups) \ |