From: Mikio Hara Date: Sun, 2 Mar 2014 22:08:44 +0000 (+0900) Subject: runtime: make SIGSYS notifiable on FreeBSD X-Git-Tag: go1.3beta1~519 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d9fc789df2a97137a56d305c61513cd33b1c910a;p=gostls13.git runtime: make SIGSYS notifiable on FreeBSD Update #7186 LGTM=iant R=iant CC=golang-codereviews https://golang.org/cl/70490043 --- diff --git a/src/pkg/runtime/signals_freebsd.h b/src/pkg/runtime/signals_freebsd.h index 4d27e050d0..8d45c50c3b 100644 --- a/src/pkg/runtime/signals_freebsd.h +++ b/src/pkg/runtime/signals_freebsd.h @@ -21,7 +21,7 @@ SigTab runtime·sigtab[] = { /* 9 */ 0, "SIGKILL: kill", /* 10 */ P, "SIGBUS: bus error", /* 11 */ P, "SIGSEGV: segmentation violation", - /* 12 */ T, "SIGSYS: bad system call", + /* 12 */ N, "SIGSYS: bad system call", /* 13 */ N, "SIGPIPE: write to broken pipe", /* 14 */ N, "SIGALRM: alarm clock", /* 15 */ N+K, "SIGTERM: termination",