-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: closing Darwin FIFO writer does not trigger kqueue event for reader #24164
Comments
This is caused by the poller. Related issue #22024 that happened on Windows. Confirmed with
|
Adding @stjohnjohnson |
@as that works! Thanks! |
golang/go#24164 Signed-off-by: Adrian Zankich <azankich@pivotal.io>
I can confirm that on MacOS 16.3.0 closing the last writer to a FIFO does not trigger a kqueue event for the reader. In Go's implementation, that causes the reader to block indefinitely. There is a Stack Overflow questions that mentions this, with no solution offered: https://stackoverflow.com/questions/49481723/difference-in-kqueue-handling-of-fifos-between-mac-os-and-freebsd . My best suggestion at this point is that on Darwin we will have to avoid treating fifos as pollable. |
Change https://golang.org/cl/118566 mentions this issue: |
The Darwin kqueue implementation doesn't report any event when the last writer for a fifo is closed. Fixes golang#24164 Change-Id: Ic2c47018ef1284bf2e26379f8dd7646edaad4d05 Reviewed-on: https://go-review.googlesource.com/118566 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
What version of Go are you using (
go version
)?go version go1.10 linux/amd64
go version go1.10 darwin/amd64
Does this issue reproduce with the latest release?
Yes
What did you do?
Ran this script here that reads/writes from a FIFO. On Linux the reader receives the EOF. On Darwin it does not.
Linux
Darwin
Repo for reproduction: https://github.com/stjohnjohnson/golang-eof-fifo
Notes
Was able to reproduce it as far back as
go1.9 darwin/amd64
using asdf. Last working version wasgo1.8.7 darwin/amd64
.The text was updated successfully, but these errors were encountered: