From cc9d30efbfec6a34829bdedf3608bd21a980534b Mon Sep 17 00:00:00 2001 From: "Balazs Gerofi bgerofi@riken.jp" Date: Thu, 4 Dec 2014 18:10:10 +0900 Subject: [PATCH] do_signal(): support for SIGSYS as of POSIX.1-2001: Signal Value Action Comment --------------------------------------------------- SIGSYS 12,31,12 Core Bad argument to routine --- arch/x86/kernel/syscall.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/kernel/syscall.c b/arch/x86/kernel/syscall.c index 71a5fa28..1ad2b504 100644 --- a/arch/x86/kernel/syscall.c +++ b/arch/x86/kernel/syscall.c @@ -412,6 +412,7 @@ do_signal(unsigned long rc, void *regs0, struct process *proc, struct sig_pendin case SIGFPE: case SIGSEGV: case SIGBUS: + case SIGSYS: core: dkprintf("do_signal,default,core,sig=%d\n", sig); coredump(proc, regs);