1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:48:14 +00:00

Implement signal() via sigaction() and get rid of sys$signal().

This commit is contained in:
Andreas Kling 2018-11-28 22:27:32 +01:00
parent d90104f9e0
commit 464a16afa2
5 changed files with 9 additions and 19 deletions

View file

@ -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: