summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-28 22:27:32 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-28 22:27:32 +0100
commit464a16afa2adb557ee127b3e7f2bf11c5617a712 (patch)
tree56680938e2962e5fdc9e357bfb864d509f01ec0c /Kernel/Syscall.cpp
parentd90104f9e00906ee4144e43d33cfb6ad3a9cc38d (diff)
downloadserenity-464a16afa2adb557ee127b3e7f2bf11c5617a712.zip
Implement signal() via sigaction() and get rid of sys$signal().
Diffstat (limited to 'Kernel/Syscall.cpp')
-rw-r--r--Kernel/Syscall.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Syscall.cpp b/Kernel/Syscall.cpp
index 945a7915d6..f1ebe6a88b 100644
--- a/Kernel/Syscall.cpp
+++ b/Kernel/Syscall.cpp
@@ -133,8 +133,6 @@ static dword handle(RegisterDump& regs, dword function, dword arg1, dword arg2,
return current->sys$geteuid();
case Syscall::SC_getegid:
return current->sys$getegid();
- case Syscall::SC_signal:
- return (dword)current->sys$signal((int)arg1, (Unix::sighandler_t)arg2);
case Syscall::SC_isatty:
return current->sys$isatty((int)arg1);
case Syscall::SC_getdtablesize: