mirror of
https://github.com/golang/go
synced 2024-11-17 22:54:48 -07:00
runtime: change SIGEMT on linux/mips64 to throw
This matches SIGEMT on other systems that use it (SIGEMT is not used for most linux systems). Change-Id: If394c06c9ed1cb3ea2564385a8edfbed8b5566d1 Reviewed-on: https://go-review.googlesource.com/17874 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
parent
1dc2e7b165
commit
68c6aad58b
@ -20,7 +20,7 @@ var sigtable = [...]sigTabT{
|
||||
/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
|
||||
/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
|
||||
/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
|
||||
/* 7 */ {_SigNotify, "SIGEMT"},
|
||||
/* 7 */ {_SigThrow, "SIGEMT"},
|
||||
/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
|
||||
/* 9 */ {0, "SIGKILL: kill"},
|
||||
/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
|
||||
|
Loading…
Reference in New Issue
Block a user