summaryrefslogtreecommitdiff
path: root/src/io_thread.hpp
diff options
context:
space:
mode:
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 0acb60d..744eec5 100644
--- a/src/io_thread.hpp
+++ b/src/io_thread.hpp
@@ -26,7 +26,7 @@
#include "stdint.hpp"
#include "object.hpp"
-#include "poller.hpp"
+#include "poller_base.hpp"
#include "i_poll_events.hpp"
#include "mailbox.hpp"
@@ -63,7 +63,7 @@ namespace xs
void timer_event (int id_);
// Used by io_objects to retrieve the assciated poller object.
- poller_t *get_poller ();
+ poller_base_t *get_poller ();
// Command handlers.
void process_stop ();
@@ -80,7 +80,7 @@ namespace xs
handle_t mailbox_handle;
// I/O multiplexing is performed using a poller object.
- poller_t *poller;
+ poller_base_t *poller;
io_thread_t (const io_thread_t&);
const io_thread_t &operator = (const io_thread_t&);