pebbe / zmq4

A Go interface to ZeroMQ version 4
BSD 2-Clause "Simplified" License
1.17k stars 163 forks source link

Define EAGAIN errno (returned by zmq when DONTWAIT is set) #90

Closed Diggs closed 8 years ago

pebbe commented 8 years ago

EAGAIN is a standard error, not defined by ZeroMQ. Use syscall.EAGAIN

See: https://github.com/pebbe/zmq4/blob/master/errors.go#L64