summaryrefslogtreecommitdiff
path: root/doc/zmq_init.txt
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:20:23 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:20:23 +0200
commitc193fd146661b39027c5e3fa0776dcdf8c6af5e2 (patch)
tree0ec001869a7e6519cc1b910de0b26c46308eba96 /doc/zmq_init.txt
parent7cb076e56a18cb76c49f17bd34bc73c11e01b705 (diff)
lock-free polling removed; ZMQ_POLL flag removed
Diffstat (limited to 'doc/zmq_init.txt')
-rw-r--r--doc/zmq_init.txt8
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/zmq_init.txt b/doc/zmq_init.txt
index 9df3e67..c1a5877 100644
--- a/doc/zmq_init.txt
+++ b/doc/zmq_init.txt
@@ -25,12 +25,8 @@ The 'io_threads' argument specifies the size of the 0MQ thread pool to handle
I/O operations. If your application is using 'inproc' messaging exclusively you
may set this to zero, otherwise set it to at least one.
-The 'flags' argument is a combination of the flags defined below:
-
-*ZMQ_POLL*::
-Specifies that sockets within this 'context' should support multiplexing using
-_zmq_poll()_. Enabling this functionality may add a small amount of latency to
-message transfers compared to leaving it disabled.
+There are no flags defined at the moment and the 'flags' argument should be set
+to zero.
RETURN VALUE