diff --git a/doc/zmq_bind.txt b/doc/zmq_bind.txt index 78d78e23..983ce934 100644 --- a/doc/zmq_bind.txt +++ b/doc/zmq_bind.txt @@ -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 diff --git a/doc/zmq_connect.txt b/doc/zmq_connect.txt index ad874090..d31b87b3 100644 --- a/doc/zmq_connect.txt +++ b/doc/zmq_connect.txt @@ -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 diff --git a/doc/zmq_poll.txt b/doc/zmq_poll.txt index a13cc4b1..bb105b48 100644 --- a/doc/zmq_poll.txt +++ b/doc/zmq_poll.txt @@ -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 diff --git a/doc/zmq_recv.txt b/doc/zmq_recv.txt index 22825e4d..879d62a4 100644 --- a/doc/zmq_recv.txt +++ b/doc/zmq_recv.txt @@ -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 diff --git a/doc/zmq_send.txt b/doc/zmq_send.txt index e0b19e7f..927bc1b1 100644 --- a/doc/zmq_send.txt +++ b/doc/zmq_send.txt @@ -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 diff --git a/doc/zmq_setsockopt.txt b/doc/zmq_setsockopt.txt index 18c55bd5..d0a1d381 100644 --- a/doc/zmq_setsockopt.txt +++ b/doc/zmq_setsockopt.txt @@ -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 ------- diff --git a/doc/zmq_socket.txt b/doc/zmq_socket.txt index 8f10cc79..a9dd5286 100644 --- a/doc/zmq_socket.txt +++ b/doc/zmq_socket.txt @@ -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 --------