aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/uapi_bsd.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ipc/uapi_bsd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/uapi_bsd.go b/ipc/uapi_bsd.go
index 6c85b40..303adeb 100644
--- a/ipc/uapi_bsd.go
+++ b/ipc/uapi_bsd.go
@@ -103,7 +103,7 @@ func UAPIListen(name string, file *os.File) (net.Listener, error) {
l.connErr <- err
return
}
- if kerr != nil || n != 1 {
+ if (kerr != nil || n != 1) && kerr != unix.EINTR {
if kerr != nil {
l.connErr <- kerr
} else {