From 50f225a04422abf64545f5eb36592d8c990b0ae4 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 16 Feb 2012 10:10:49 +0900 Subject: poller_base_t renamed to io_thread_t Signed-off-by: Martin Sustrik --- src/select.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/select.hpp') diff --git a/src/select.hpp b/src/select.hpp index 283cc52..b1b96ef 100644 --- a/src/select.hpp +++ b/src/select.hpp @@ -42,7 +42,7 @@ #include "fd.hpp" #include "thread.hpp" -#include "poller_base.hpp" +#include "io_thread.hpp" namespace xs { @@ -52,14 +52,14 @@ namespace xs // Implements socket polling mechanism using POSIX.1-2001 select() // function. - class select_t : public poller_base_t + class select_t : public io_thread_t { public: select_t (xs::ctx_t *ctx_, uint32_t tid_); ~select_t (); - // "poller" concept. + // Implementation of virtual functions from io_thread_t. handle_t add_fd (fd_t fd_, xs::i_poll_events *events_); void rm_fd (handle_t handle_); void set_pollin (handle_t handle_); -- cgit v1.2.3