aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/signal_solaris.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-11-01 10:24:06 -0700
committerIan Lance Taylor <iant@golang.org>2016-11-01 20:02:40 +0000
commit84803f3da1b3921a6eacec435d97d5b9e40fe947 (patch)
tree5b5421b27a23feb9eebbce0226a0195545f5b5d8 /src/runtime/signal_solaris.go
parent2c5bce1cfa242f27ffece3d30e8b851e3e923be2 (diff)
downloadgo-84803f3da1b3921a6eacec435d97d5b9e40fe947.tar.gz
go-84803f3da1b3921a6eacec435d97d5b9e40fe947.zip
runtime: treat SIGSTOP on Solaris as we do on other systems
This makes no practical difference, as SIGSTOP can not be caught, but may as well be consistent. Change-Id: I3efbbf092388bb3f6dccc94cf703c5d94d35f6a1 Reviewed-on: https://go-review.googlesource.com/32533 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/signal_solaris.go')
-rw-r--r--src/runtime/signal_solaris.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/signal_solaris.go b/src/runtime/signal_solaris.go
index a86f7bf6b4..c931c222d6 100644
--- a/src/runtime/signal_solaris.go
+++ b/src/runtime/signal_solaris.go
@@ -33,7 +33,7 @@ var sigtable = [...]sigTabT{
/* 20 */ {_SigNotify, "SIGWINCH: window size change"},
/* 21 */ {_SigNotify, "SIGURG: urgent socket condition"},
/* 22 */ {_SigNotify, "SIGPOLL: pollable event occurred"},
- /* 23 */ {_SigNotify + _SigDefault, "SIGSTOP: stop (cannot be caught or ignored)"},
+ /* 23 */ {0, "SIGSTOP: stop (cannot be caught or ignored)"},
/* 24 */ {_SigNotify + _SigDefault, "SIGTSTP: user stop requested from tty"},
/* 25 */ {_SigNotify + _SigDefault, "SIGCONT: stopped process has been continued"},
/* 26 */ {_SigNotify + _SigDefault, "SIGTTIN: background tty read attempted"},