summaryrefslogtreecommitdiff
path: root/src/socket_base.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-08-28 10:15:03 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-08-28 10:15:03 +0200
commit42000d2c4f988a164eaeb9b580a4f588d91e353e (patch)
tree1f148dbd4b4d78966a4554dbc215761d06623bb1 /src/socket_base.cpp
parent92923cd40b645af844c5ed1055a0a45c6daa3c89 (diff)
terminology unified: revive->activate
Diffstat (limited to 'src/socket_base.cpp')
-rw-r--r--src/socket_base.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp
index fe06d2f..0dae1b2 100644
--- a/src/socket_base.cpp
+++ b/src/socket_base.cpp
@@ -495,8 +495,9 @@ int zmq::socket_base_t::recv (::zmq_msg_t *msg_, int flags_)
errno = err;
// If the message cannot be fetched immediately, there are two scenarios.
- // For non-blocking recv, commands are processed in case there's a revive
- // command already waiting int a command pipe. If it's not, return EAGAIN.
+ // 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 (errno != EAGAIN)
return -1;