summaryrefslogtreecommitdiff
path: root/src/io_thread.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:31:57 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:31:57 +0200
commit37128b7b1aeed9ad2bf6816560b85b5f94dd5bec (patch)
tree41c1147b83feccf5f495f004e3b48952b8756271 /src/io_thread.hpp
parentc193fd146661b39027c5e3fa0776dcdf8c6af5e2 (diff)
fd_signaler_t renamed to signaler_t
Diffstat (limited to 'src/io_thread.hpp')
-rw-r--r--src/io_thread.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/io_thread.hpp b/src/io_thread.hpp
index 84b9319..deb03a1 100644
--- a/src/io_thread.hpp
+++ b/src/io_thread.hpp
@@ -26,7 +26,7 @@
#include "object.hpp"
#include "poller.hpp"
#include "i_poll_events.hpp"
-#include "fd_signaler.hpp"
+#include "signaler.hpp"
namespace zmq
{
@@ -51,7 +51,7 @@ namespace zmq
void stop ();
// Returns signaler associated with this I/O thread.
- fd_signaler_t *get_signaler ();
+ signaler_t *get_signaler ();
// i_poll_events implementation.
void in_event ();
@@ -71,7 +71,7 @@ namespace zmq
// Poll thread gets notifications about incoming commands using
// this signaler.
- fd_signaler_t signaler;
+ signaler_t signaler;
// Handle associated with signaler's file descriptor.
poller_t::handle_t signaler_handle;