diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-05-21 13:06:21 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-05-21 16:25:12 -0400 |
commit | cabc36969bce739e86ecac250d286b0bda6aa88e (patch) | |
tree | 635c9025bff82709cccc177131f3857b1a3e692f /arch/mipsn32 | |
parent | 09c54607e372336c243a4b0b52f7a0b579eba73e (diff) | |
download | musl-cabc36969bce739e86ecac250d286b0bda6aa88e.tar.gz |
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.
Diffstat (limited to 'arch/mipsn32')
-rw-r--r-- | arch/mipsn32/bits/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mipsn32/bits/signal.h b/arch/mipsn32/bits/signal.h index c31ad07e..4f91c9fc 100644 --- a/arch/mipsn32/bits/signal.h +++ b/arch/mipsn32/bits/signal.h @@ -112,7 +112,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 |