summaryrefslogtreecommitdiff
path: root/src/select.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:09:54 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:09:54 +0900
commit0641ffa5e9588dd7daaf389c40a213994fe4b1b1 (patch)
treeba0152291d8a0aa01f6a531021fe4927c214b41f /src/select.cpp
parent5391d09c9801ec7680f5dba430131c4f8d079765 (diff)
Intercept start() and stop() calls in poller_base_t
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/select.cpp')
-rw-r--r--src/select.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.cpp b/src/select.cpp
index 65772c7..3518c52 100644
--- a/src/select.cpp
+++ b/src/select.cpp
@@ -138,12 +138,12 @@ void xs::select_t::reset_pollout (handle_t handle_)
FD_CLR (ptrtofd (handle_), &source_set_out);
}
-void xs::select_t::start ()
+void xs::select_t::xstart ()
{
worker.start (worker_routine, this);
}
-void xs::select_t::stop ()
+void xs::select_t::xstop ()
{
stopping = true;
}