mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
Merge pull request #3790 from std-any-emplace/master
EAGAIN: Refer to ZMQ_RCVTIMEO when receiving in blocking-mode
This commit is contained in:
commit
ebc9314339
@ -54,7 +54,10 @@ values defined below.
|
||||
ERRORS
|
||||
------
|
||||
*EAGAIN*::
|
||||
Non-blocking mode was requested and no messages are available at the moment.
|
||||
Either the timeout set via the socket-option ZMQ_RCVTIMEO (see linkzmq:zmq_setsockopt[3])
|
||||
has been reached (flag ZMQ_DONTWAIT not set) without being able to read a message
|
||||
from the socket or there are no messages available at the moment (flag ZMQ_DONTWAIT set)
|
||||
and the operation would block.
|
||||
*ENOTSUP*::
|
||||
The _zmq_msg_recv()_ operation is not supported by this socket type.
|
||||
*EFSM*::
|
||||
@ -114,6 +117,7 @@ linkzmq:zmq_recv[3]
|
||||
linkzmq:zmq_send[3]
|
||||
linkzmq:zmq_msg_send[3]
|
||||
linkzmq:zmq_getsockopt[3]
|
||||
linkzmq:zmq_setsockopt[3]
|
||||
linkzmq:zmq_socket[7]
|
||||
linkzmq:zmq[7]
|
||||
|
||||
|
@ -50,7 +50,10 @@ in case the message was truncated. If not successful the function shall return
|
||||
ERRORS
|
||||
------
|
||||
*EAGAIN*::
|
||||
Non-blocking mode was requested and no messages are available at the moment.
|
||||
Either the timeout set via the socket-option ZMQ_RCVTIMEO (see linkzmq:zmq_setsockopt[3])
|
||||
has been reached (flag ZMQ_DONTWAIT not set) without being able to read a message
|
||||
from the socket or there are no messages available at the moment (flag ZMQ_DONTWAIT set)
|
||||
and the operation would block.
|
||||
*ENOTSUP*::
|
||||
The _zmq_recv()_ operation is not supported by this socket type.
|
||||
*EFSM*::
|
||||
@ -81,6 +84,7 @@ SEE ALSO
|
||||
--------
|
||||
linkzmq:zmq_send[3]
|
||||
linkzmq:zmq_getsockopt[3]
|
||||
linkzmq:zmq_setsockopt[3]
|
||||
linkzmq:zmq_socket[7]
|
||||
linkzmq:zmq[7]
|
||||
|
||||
|
@ -52,7 +52,10 @@ values defined below.
|
||||
ERRORS
|
||||
------
|
||||
*EAGAIN*::
|
||||
Non-blocking mode was requested and no messages are available at the moment.
|
||||
Either the timeout set via the socket-option ZMQ_RCVTIMEO (see linkzmq:zmq_setsockopt[3])
|
||||
has been reached (flag ZMQ_DONTWAIT not set) without being able to read a message
|
||||
from the socket or there are no messages available at the moment (flag ZMQ_DONTWAIT set)
|
||||
and the operation would block.
|
||||
*ENOTSUP*::
|
||||
The _zmq_recvmsg()_ operation is not supported by this socket type.
|
||||
*EFSM*::
|
||||
@ -111,6 +114,7 @@ SEE ALSO
|
||||
linkzmq:zmq_recv[3]
|
||||
linkzmq:zmq_send[3]
|
||||
linkzmq:zmq_getsockopt[3]
|
||||
linkzmq:zmq_setsockopt[3]
|
||||
linkzmq:zmq_socket[7]
|
||||
linkzmq:zmq[7]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user