From 8d9faed03eb99cd3feeb115b9859f4563e26b746 Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Sat, 26 Oct 2002 17:38:20 +0000 Subject: [PATCH] Allow deprecated or unimplemented system call vectors to deliver SIGSYS, as suggested by the sparc v9 ABI. --- sys/sparc64/sparc64/trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sparc64/sparc64/trap.c b/sys/sparc64/sparc64/trap.c index 37f9b16314af..7601695c68e0 100644 --- a/sys/sparc64/sparc64/trap.c +++ b/sys/sparc64/sparc64/trap.c @@ -208,7 +208,7 @@ const int trap_sig[] = { SIGILL, /* range check */ SIGILL, /* fix alignment */ SIGILL, /* integer overflow */ - -1, /* syscall */ + SIGSYS, /* syscall */ -1, /* restore physical watchpoint */ -1, /* restore virtual watchpoint */ -1, /* kernel stack fault */