4 references to EAGAIN
System.Net.Primitives (4)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (1)
112
EWOULDBLOCK =
EAGAIN
, // Operation would block.
src\libraries\Common\src\System\Net\Sockets\SocketErrorPal.Unix.cs (3)
26
Interop.Error.
EAGAIN
=> SocketError.WouldBlock,
113
SocketError.TryAgain => Interop.Error.
EAGAIN
, // not a perfect mapping, but better than nothing
114
SocketError.WouldBlock => Interop.Error.
EAGAIN
,