Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
3236cb1a
Commit
3236cb1a
authored
Apr 12, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ETERM is accounted for in the documentation
parent
fba28c7c
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
1 deletion
+16
-1
zmq_bind.txt
doc/zmq_bind.txt
+2
-0
zmq_connect.txt
doc/zmq_connect.txt
+2
-0
zmq_poll.txt
doc/zmq_poll.txt
+2
-1
zmq_recv.txt
doc/zmq_recv.txt
+2
-0
zmq_send.txt
doc/zmq_send.txt
+2
-0
zmq_setsockopt.txt
doc/zmq_setsockopt.txt
+3
-0
zmq_socket.txt
doc/zmq_socket.txt
+3
-0
No files found.
doc/zmq_bind.txt
View file @
3236cb1a
...
...
@@ -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
...
...
doc/zmq_connect.txt
View file @
3236cb1a
...
...
@@ -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
...
...
doc/zmq_poll.txt
View file @
3236cb1a
...
...
@@ -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
...
...
doc/zmq_recv.txt
View file @
3236cb1a
...
...
@@ -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
...
...
doc/zmq_send.txt
View file @
3236cb1a
...
...
@@ -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
...
...
doc/zmq_setsockopt.txt
View file @
3236cb1a
...
...
@@ -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
-------
...
...
doc/zmq_socket.txt
View file @
3236cb1a
...
...
@@ -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
--------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment