1
0
mirror of https://github.com/golang/go synced 2024-09-24 09:20:15 -06:00

runtime: don't panic on SIGILL, just crash

R=rsc
CC=golang-dev
https://golang.org/cl/5504067
This commit is contained in:
Ian Lance Taylor 2011-12-21 15:45:36 -08:00
parent 1cf45e388d
commit 5690ddc7fa

View File

@ -13,7 +13,7 @@ SigTab runtime·sigtab[] = {
/* 1 */ Q+R, "SIGHUP: terminal line hangup", /* 1 */ Q+R, "SIGHUP: terminal line hangup",
/* 2 */ Q+R, "SIGINT: interrupt", /* 2 */ Q+R, "SIGINT: interrupt",
/* 3 */ C, "SIGQUIT: quit", /* 3 */ C, "SIGQUIT: quit",
/* 4 */ C+P, "SIGILL: illegal instruction", /* 4 */ C, "SIGILL: illegal instruction",
/* 5 */ C, "SIGTRAP: trace trap", /* 5 */ C, "SIGTRAP: trace trap",
/* 6 */ C, "SIGABRT: abort", /* 6 */ C, "SIGABRT: abort",
/* 7 */ C+P, "SIGBUS: bus error", /* 7 */ C+P, "SIGBUS: bus error",