summaryrefslogtreecommitdiff
path: root/src/io_thread.hpp
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 /src/io_thread.hpp
parent7cb076e56a18cb76c49f17bd34bc73c11e01b705 (diff)
lock-free polling removed; ZMQ_POLL flag removed
Diffstat (limited to 'src/io_thread.hpp')
-rw-r--r--src/io_thread.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/io_thread.hpp b/src/io_thread.hpp
index 9377515..84b9319 100644
--- a/src/io_thread.hpp
+++ b/src/io_thread.hpp
@@ -38,8 +38,7 @@ namespace zmq
{
public:
- io_thread_t (class dispatcher_t *dispatcher_, int thread_slot_,
- int flags_);
+ io_thread_t (class dispatcher_t *dispatcher_, int thread_slot_);
// Clean-up. If the thread was started, it's neccessary to call 'stop'
// before invoking destructor. Otherwise the destructor would hang up.
@@ -52,7 +51,7 @@ namespace zmq
void stop ();
// Returns signaler associated with this I/O thread.
- i_signaler *get_signaler ();
+ fd_signaler_t *get_signaler ();
// i_poll_events implementation.
void in_event ();