summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-03-26 10:38:40 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-03-26 10:38:40 +0100
commitabb184a051b592b6d4c99fd3299e78ea7c1da826 (patch)
treecbbe7a6778c728710dbdb3ba16489db7b0e91202 /doc
parentbc4a1ce3345f4e5904e4b13c618f90def21256a5 (diff)
ZMQ_NOBLOCK renamed ZMQ_DONTWAIT
Done because of POSIX compliance Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/zmq_recv.txt2
-rw-r--r--doc/zmq_send.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/zmq_recv.txt b/doc/zmq_recv.txt
index dbbbd75..1588c64 100644
--- a/doc/zmq_recv.txt
+++ b/doc/zmq_recv.txt
@@ -21,7 +21,7 @@ If there are no messages available on the specified 'socket' the _zmq_recv()_
function shall block until the request can be satisfied. The 'flags' argument
is a combination of the flags defined below:
-*ZMQ_NOBLOCK*::
+*ZMQ_DONTWAIT*::
Specifies that the operation should be performed in non-blocking mode. If there
are no messages available on the specified 'socket', the _zmq_recv()_ function
shall fail with 'errno' set to EAGAIN.
diff --git a/doc/zmq_send.txt b/doc/zmq_send.txt
index 57d349e..c8d6f33 100644
--- a/doc/zmq_send.txt
+++ b/doc/zmq_send.txt
@@ -18,7 +18,7 @@ The _zmq_send()_ function shall queue the message referenced by the 'msg'
argument to be sent to the socket referenced by the 'socket' argument. The
'flags' argument is a combination of the flags defined below:
-*ZMQ_NOBLOCK*::
+*ZMQ_DONTWAIT*::
Specifies that the operation should be performed in non-blocking mode. If the
message cannot be queued on the 'socket', the _zmq_send()_ function shall fail
with 'errno' set to EAGAIN.