0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 01:37:56 +08:00

ETERM is accounted for in the documentation

This commit is contained in:
Martin Sustrik 2010-04-12 09:25:04 +02:00
parent fba28c7c0c
commit 3236cb1a54
7 changed files with 16 additions and 1 deletions

View File

@ -52,6 +52,8 @@ The requested 'address' is already in use.
The requested 'address' was not local.
*ENODEV*::
The requested 'address' specifies a nonexistent interface.
*ETERM*::
The associated context was terminted.
EXAMPLE

View File

@ -50,6 +50,8 @@ ERRORS
The requested 'transport' protocol is not supported.
*ENOCOMPATPROTO*::
The requested 'transport' protocol is not compatible with the socket type.
*ETERM*::
The associated context was terminted.
EXAMPLE

View File

@ -93,10 +93,11 @@ ERRORS
*EFAULT*::
At least one of the members of the 'items' array refers to a 'socket' belonging
to a different application thread.
*ENOTSUP*::
At least one of the members of the 'items' array refers to a 'socket' whose
associated 0MQ 'context' was initialised without the 'ZMQ_POLL' flag.
*ETERM*::
The associated context was terminted.
EXAMPLE

View File

@ -46,6 +46,8 @@ The _zmq_recv()_ operation cannot be performed on this socket at the moment due
to the socket not being in the appropriate state. This error may occur with
socket types that switch between several states, such as ZMQ_REP. See the
_messaging patterns_ section of linkzmq:zmq_socket[3] for more information.
*ETERM*::
The associated context was terminted.
EXAMPLE

View File

@ -46,6 +46,8 @@ The _zmq_send()_ operation cannot be performed on this socket at the moment due
to the socket not being in the appropriate state. This error may occur with
socket types that switch between several states, such as ZMQ_REP. See the
_messaging patterns_ section of linkzmq:zmq_socket[3] for more information.
*ETERM*::
The associated context was terminted.
EXAMPLE

View File

@ -228,6 +228,9 @@ ERRORS
The requested option _option_name_ is unknown, or the requested _option_len_ or
_option_value_ is invalid.
*ETERM*::
The associated context was terminted.
EXAMPLE
-------

View File

@ -117,6 +117,9 @@ The requested socket 'type' is invalid.
The number of application threads using sockets within this 'context' has been
exceeded. See the 'app_threads' parameter of the _zmq_init()_ function.
*ETERM*::
The associated context was terminted.
SEE ALSO
--------