From: Ian Lance Taylor Date: Wed, 21 Dec 2011 23:45:36 +0000 (-0800) Subject: runtime: don't panic on SIGILL, just crash X-Git-Tag: weekly.2011-12-22~36 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5690ddc7fa033e10961c728ddd6bccf4903707d4;p=gostls13.git runtime: don't panic on SIGILL, just crash R=rsc CC=golang-dev https://golang.org/cl/5504067 --- diff --git a/src/pkg/runtime/signals_linux.h b/src/pkg/runtime/signals_linux.h index 919b80ea29..1fc5f8c87c 100644 --- a/src/pkg/runtime/signals_linux.h +++ b/src/pkg/runtime/signals_linux.h @@ -13,7 +13,7 @@ SigTab runtime·sigtab[] = { /* 1 */ Q+R, "SIGHUP: terminal line hangup", /* 2 */ Q+R, "SIGINT: interrupt", /* 3 */ C, "SIGQUIT: quit", - /* 4 */ C+P, "SIGILL: illegal instruction", + /* 4 */ C, "SIGILL: illegal instruction", /* 5 */ C, "SIGTRAP: trace trap", /* 6 */ C, "SIGABRT: abort", /* 7 */ C+P, "SIGBUS: bus error",