From: Ian Lance Taylor Date: Thu, 15 Jun 2017 17:29:34 +0000 (-0700) Subject: doc: mention that os package now uses poller X-Git-Tag: go1.9beta2~74 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c7403ac7b6dcea7e0bb0a4991b0ebe7f26b01eff;p=gostls13.git doc: mention that os package now uses poller Updates #20587 Change-Id: I428d20bf8512ba859cc63c439bd5d92a5173fad2 Reviewed-on: https://go-review.googlesource.com/45910 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.9.html b/doc/go1.9.html index 76772e4008..c7515379f5 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -608,6 +608,15 @@ CL 40331: https://golang.org/cl/40331: cmd/link,runtime/cgo: enable PT_TLS gener
os
+
+

+ The ospackage now uses the internal runtime poller + for file I/O. + This reduces the number of threads required for read/write + operations on pipes, and eliminates races when one goroutine + closes a file while another using it for I/O. +

+

On Windows,