From: Emmanuel Odeke
Date: Fri, 27 May 2016 08:31:59 +0000 (-0600)
Subject: doc/go1.7: document signal name printing during panics
X-Git-Tag: go1.7beta1~63
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=65dd08197ece4f64b990aa0023286c8f6abc25fa;p=gostls13.git
doc/go1.7: document signal name printing during panics
Document new behavior about signal name printing
in panics as per CL golang.org/cl/22753.
For #15810
Change-Id: I9c677d5dd779b41e82afa25e3c797d8e739600d3
Reviewed-on: https://go-review.googlesource.com/23493
Reviewed-by: Russ Cox
---
diff --git a/doc/go1.7.html b/doc/go1.7.html
index db249dd053..a49ea83300 100644
--- a/doc/go1.7.html
+++ b/doc/go1.7.html
@@ -397,6 +397,11 @@ as
required by the language specification.
+
+During panics, if a signal's name is known, it will be printed in the stack trace.
+Otherwise, the signal's number will be used, as it was before Go1.7.
+
+
The new function
KeepAlive