summaryrefslogtreecommitdiff
path: root/src/socket_base.cpp
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 /src/socket_base.cpp
parentbc4a1ce3345f4e5904e4b13c618f90def21256a5 (diff)
ZMQ_NOBLOCK renamed ZMQ_DONTWAIT
Done because of POSIX compliance Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/socket_base.cpp')
-rw-r--r--src/socket_base.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp
index bf873b6..b1d1142 100644
--- a/src/socket_base.cpp
+++ b/src/socket_base.cpp
@@ -478,7 +478,7 @@ int zmq::socket_base_t::send (::zmq_msg_t *msg_, int flags_)
// In case of non-blocking send we'll simply propagate
// the error - including EAGAIN - upwards.
- if (flags_ & ZMQ_NOBLOCK)
+ if (flags_ & ZMQ_DONTWAIT)
return -1;
// Oops, we couldn't send the message. Wait for the next
@@ -533,7 +533,7 @@ int zmq::socket_base_t::recv (::zmq_msg_t *msg_, int flags_)
// For non-blocking recv, commands are processed in case there's an
// activate_reader command already waiting int a command pipe.
// If it's not, return EAGAIN.
- if (flags_ & ZMQ_NOBLOCK) {
+ if (flags_ & ZMQ_DONTWAIT) {
if (errno != EAGAIN)
return -1;
if (unlikely (process_commands (false, false) != 0))