From cabc36969bce739e86ecac250d286b0bda6aa88e Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 21 May 2020 13:06:21 -0400 Subject: fix incorrect SIGSTKFLT on all mips archs signal 7 is SIGEMT on Linux mips* ABI according to the man pages and kernel. it's not clear where the wrong name came from but it dates back to original mips commit. --- arch/mips/bits/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/mips/bits/signal.h') diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h index e1d97ac7..1b69e762 100644 --- a/arch/mips/bits/signal.h +++ b/arch/mips/bits/signal.h @@ -93,7 +93,7 @@ typedef struct __ucontext { #define SIGTRAP 5 #define SIGABRT 6 #define SIGIOT SIGABRT -#define SIGSTKFLT 7 +#define SIGEMT 7 #define SIGFPE 8 #define SIGKILL 9 #define SIGBUS 10 -- cgit v1.2.1