diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:05:01 +0900 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:05:01 +0900 |
commit | 2df873a435ff139cf9d1b10b666d75e6dc6da442 (patch) | |
tree | 042b0a349ca84919041fb37df7e5a3b7195d065d /src/io_object.cpp | |
parent | b67f88a7d6322a293ac3e3be9d6df9f358509221 (diff) |
Timers identified by dynamically generated handles
Timers are not longer identified by hard-wired IDs.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/io_object.cpp')
-rw-r--r-- | src/io_object.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/io_object.cpp b/src/io_object.cpp index 730123e..abc8204 100644 --- a/src/io_object.cpp +++ b/src/io_object.cpp @@ -82,14 +82,14 @@ void xs::io_object_t::reset_pollout (handle_t handle_) poller->reset_pollout (handle_); } -void xs::io_object_t::add_timer (int timeout_, int id_) +xs::handle_t xs::io_object_t::add_timer (int timeout_) { - poller->add_timer (timeout_, this, id_); + return poller->add_timer (timeout_, this); } -void xs::io_object_t::rm_timer (int id_) +void xs::io_object_t::rm_timer (handle_t handle_) { - poller->rm_timer (this, id_); + poller->rm_timer (handle_); } void xs::io_object_t::in_event (fd_t fd_) @@ -98,11 +98,12 @@ void xs::io_object_t::in_event (fd_t fd_) } void xs::io_object_t::out_event (fd_t fd_) + { xs_assert (false); } -void xs::io_object_t::timer_event (int id_) +void xs::io_object_t::timer_event (handle_t handle_) { xs_assert (false); } |