summaryrefslogtreecommitdiff
path: root/Kernel/API
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-15 01:17:00 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-15 01:30:22 +0200
commitbf247fb45f0c21121281609949e5891237721d62 (patch)
tree423446a042e224a4538022583403cbe062928888 /Kernel/API
parent5f3d38445412319d1a95454d1b51706fa055b210 (diff)
downloadserenity-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.h2
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) \