summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2011-12-21 15:45:36 -0800
committerIan Lance Taylor <iant@golang.org>2011-12-21 15:45:36 -0800
commitaf3462b82f9111e79b34abcb2ffc5a0bc0b755bf (patch)
treee57b9f9dbc2829ca3a0bc832c7725ea0dce8f9ee
parent486c6785b706f0f792078b96a178bed002466c68 (diff)
downloadgo-af3462b82f9111e79b34abcb2ffc5a0bc0b755bf.tar.gz
runtime: don't panic on SIGILL, just crash
R=rsc CC=golang-dev http://codereview.appspot.com/5504067
-rw-r--r--src/pkg/runtime/signals_linux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/signals_linux.h b/src/pkg/runtime/signals_linux.h
index 919b80ea2..1fc5f8c87 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",