aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/defs_darwin_amd64.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2017-10-19 16:01:43 -0700
committerIan Lance Taylor <iant@golang.org>2017-10-20 22:26:30 +0000
commit23aad448b1e3f7c3b4ba2af90120bde91ac865b4 (patch)
treed0b60cd4e817998a50a07b9ce62b92954b110e69 /src/runtime/defs_darwin_amd64.go
parent4e64ee423c3a755ed31c3c98bfba98adc5995b4a (diff)
downloadgo-23aad448b1e3f7c3b4ba2af90120bde91ac865b4.tar.gz
go-23aad448b1e3f7c3b4ba2af90120bde91ac865b4.zip
runtime: for kqueue treat EVFILT_READ with EV_EOF as permitting a write
On systems that use kqueue, we always register descriptors for both EVFILT_READ and EVFILT_WRITE. On at least FreeBSD and OpenBSD, when the write end of a pipe is registered for EVFILT_READ and EVFILT_WRITE events, and the read end of the pipe is closed, kqueue reports an EVFILT_READ event with EV_EOF set, but does not report an EVFILT_WRITE event. Since the write to the pipe is waiting for an EVFILT_WRITE event, closing the read end of a pipe can cause the write end to hang rather than attempt another write which will fail with EPIPE. Fix this by treating EVFILT_READ with EV_EOF set as making both reads and writes ready to proceed. The real test for this is in CL 71770, which tests using various timeouts with pipes. Updates #22114 Change-Id: Ib23fbaaddbccd8eee77bdf18f27a7f0aa50e2742 Reviewed-on: https://go-review.googlesource.com/71973 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Diffstat (limited to 'src/runtime/defs_darwin_amd64.go')
-rw-r--r--src/runtime/defs_darwin_amd64.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/defs_darwin_amd64.go b/src/runtime/defs_darwin_amd64.go
index a4ab090d51..245fe158c7 100644
--- a/src/runtime/defs_darwin_amd64.go
+++ b/src/runtime/defs_darwin_amd64.go
@@ -118,6 +118,7 @@ const (
_EV_CLEAR = 0x20
_EV_RECEIPT = 0x40
_EV_ERROR = 0x4000
+ _EV_EOF = 0x8000
_EVFILT_READ = -0x1
_EVFILT_WRITE = -0x2
)