summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-04-12 09:25:04 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-04-12 09:25:04 +0200
commit3236cb1a54316206d14a0f925dfa79d5b35f70fc (patch)
tree0a6b56393a323bd3256c268920e9c7ff863cc2ac /doc
parentfba28c7c0cddd7c54fe45b38fc38ac6fe5a48438 (diff)
ETERM is accounted for in the documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/zmq_bind.txt2
-rw-r--r--doc/zmq_connect.txt2
-rw-r--r--doc/zmq_poll.txt3
-rw-r--r--doc/zmq_recv.txt2
-rw-r--r--doc/zmq_send.txt2
-rw-r--r--doc/zmq_setsockopt.txt3
-rw-r--r--doc/zmq_socket.txt3
7 files changed, 16 insertions, 1 deletions
diff --git a/doc/zmq_bind.txt b/doc/zmq_bind.txt
index 78d78e2..983ce93 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 ad87409..d31b87b 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 a13cc4b..bb105b4 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 22825e4..879d62a 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 e0b19e7..927bc1b 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 18c55bd..d0a1d38 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 8f10cc7..a9dd528 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
--------