aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Naur <elias.naur@gmail.com>2016-11-23 00:50:46 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-23 01:16:47 +0000
commit8ace3461a46d09466f0e1a8ea3ff41ac9cbd46f4 (patch)
tree703cb7ff33bbe34b22f638a461c2995da0f0d3c0
parentb1dbc9f8c0257aca065126d8dfc3ebfe0be2aada (diff)
downloadgo-8ace3461a46d09466f0e1a8ea3ff41ac9cbd46f4.tar.xz
doc: add SIGPIPE behaviour change to go1.8.txt
CL 32796 changes the SIGPIPE behaviour for c-archive and c-shared programs. Add it to go1.8.txt. Change-Id: I31200187033349c642965a4bb077bcc77d5329a3 Reviewed-on: https://go-review.googlesource.com/33397 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--doc/go1.8.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/go1.8.txt b/doc/go1.8.txt
index 588d56d5e0..d6f615ab7a 100644
--- a/doc/go1.8.txt
+++ b/doc/go1.8.txt
@@ -256,6 +256,7 @@ runtime: sleep on CLOCK_MONOTONIC in futexsleep1 on freebsd (CL 30154)
runtime: use RtlGenRandom instead of CryptGenRandom (CL 29700)
runtime: use clock_gettime(CLOCK_REALTIME) for nanosecond-precision time.now on arm64, mips64x (CL 32177)
runtime: use correct system page size on all arches (CL 25022)
+runtime: handle SIGPIPE in c-archive and c-shared programs (CL 32796)
syscall: Clearenv now unsets env vars on Windows (CL 33168)
syscall: add bounds checking and error returns to ParseNetlinkMessage (CL 26990)