mirror of
https://github.com/golang/go
synced 2024-11-06 05:26:11 -07:00
23aad448b1
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>
126 lines
2.5 KiB
Go
126 lines
2.5 KiB
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
|
|
/*
|
|
Input to cgo.
|
|
|
|
GOARCH=amd64 go tool cgo -cdefs defs_dragonfly.go >defs_dragonfly_amd64.h
|
|
*/
|
|
|
|
package runtime
|
|
|
|
/*
|
|
#include <sys/user.h>
|
|
#include <sys/time.h>
|
|
#include <sys/event.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/ucontext.h>
|
|
#include <sys/rtprio.h>
|
|
#include <sys/signal.h>
|
|
#include <sys/unistd.h>
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
EINTR = C.EINTR
|
|
EFAULT = C.EFAULT
|
|
EBUSY = C.EBUSY
|
|
EAGAIN = C.EAGAIN
|
|
|
|
PROT_NONE = C.PROT_NONE
|
|
PROT_READ = C.PROT_READ
|
|
PROT_WRITE = C.PROT_WRITE
|
|
PROT_EXEC = C.PROT_EXEC
|
|
|
|
MAP_ANON = C.MAP_ANON
|
|
MAP_PRIVATE = C.MAP_PRIVATE
|
|
MAP_FIXED = C.MAP_FIXED
|
|
|
|
MADV_FREE = C.MADV_FREE
|
|
|
|
SA_SIGINFO = C.SA_SIGINFO
|
|
SA_RESTART = C.SA_RESTART
|
|
SA_ONSTACK = C.SA_ONSTACK
|
|
|
|
SIGHUP = C.SIGHUP
|
|
SIGINT = C.SIGINT
|
|
SIGQUIT = C.SIGQUIT
|
|
SIGILL = C.SIGILL
|
|
SIGTRAP = C.SIGTRAP
|
|
SIGABRT = C.SIGABRT
|
|
SIGEMT = C.SIGEMT
|
|
SIGFPE = C.SIGFPE
|
|
SIGKILL = C.SIGKILL
|
|
SIGBUS = C.SIGBUS
|
|
SIGSEGV = C.SIGSEGV
|
|
SIGSYS = C.SIGSYS
|
|
SIGPIPE = C.SIGPIPE
|
|
SIGALRM = C.SIGALRM
|
|
SIGTERM = C.SIGTERM
|
|
SIGURG = C.SIGURG
|
|
SIGSTOP = C.SIGSTOP
|
|
SIGTSTP = C.SIGTSTP
|
|
SIGCONT = C.SIGCONT
|
|
SIGCHLD = C.SIGCHLD
|
|
SIGTTIN = C.SIGTTIN
|
|
SIGTTOU = C.SIGTTOU
|
|
SIGIO = C.SIGIO
|
|
SIGXCPU = C.SIGXCPU
|
|
SIGXFSZ = C.SIGXFSZ
|
|
SIGVTALRM = C.SIGVTALRM
|
|
SIGPROF = C.SIGPROF
|
|
SIGWINCH = C.SIGWINCH
|
|
SIGINFO = C.SIGINFO
|
|
SIGUSR1 = C.SIGUSR1
|
|
SIGUSR2 = C.SIGUSR2
|
|
|
|
FPE_INTDIV = C.FPE_INTDIV
|
|
FPE_INTOVF = C.FPE_INTOVF
|
|
FPE_FLTDIV = C.FPE_FLTDIV
|
|
FPE_FLTOVF = C.FPE_FLTOVF
|
|
FPE_FLTUND = C.FPE_FLTUND
|
|
FPE_FLTRES = C.FPE_FLTRES
|
|
FPE_FLTINV = C.FPE_FLTINV
|
|
FPE_FLTSUB = C.FPE_FLTSUB
|
|
|
|
BUS_ADRALN = C.BUS_ADRALN
|
|
BUS_ADRERR = C.BUS_ADRERR
|
|
BUS_OBJERR = C.BUS_OBJERR
|
|
|
|
SEGV_MAPERR = C.SEGV_MAPERR
|
|
SEGV_ACCERR = C.SEGV_ACCERR
|
|
|
|
ITIMER_REAL = C.ITIMER_REAL
|
|
ITIMER_VIRTUAL = C.ITIMER_VIRTUAL
|
|
ITIMER_PROF = C.ITIMER_PROF
|
|
|
|
EV_ADD = C.EV_ADD
|
|
EV_DELETE = C.EV_DELETE
|
|
EV_CLEAR = C.EV_CLEAR
|
|
EV_ERROR = C.EV_ERROR
|
|
EV_EOF = C.EV_EOF
|
|
EVFILT_READ = C.EVFILT_READ
|
|
EVFILT_WRITE = C.EVFILT_WRITE
|
|
)
|
|
|
|
type Rtprio C.struct_rtprio
|
|
type Lwpparams C.struct_lwp_params
|
|
type Sigset C.struct___sigset
|
|
type StackT C.stack_t
|
|
|
|
type Siginfo C.siginfo_t
|
|
|
|
type Mcontext C.mcontext_t
|
|
type Ucontext C.ucontext_t
|
|
|
|
type Timespec C.struct_timespec
|
|
type Timeval C.struct_timeval
|
|
type Itimerval C.struct_itimerval
|
|
|
|
type Kevent C.struct_kevent
|