From 0e167c86051614f9d9d9fab255aae8272b1b056b Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 16 Feb 2012 10:03:45 +0900 Subject: File descriptor passed to in_event and out_event Signed-off-by: Martin Sustrik --- src/io_thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/io_thread.cpp') diff --git a/src/io_thread.cpp b/src/io_thread.cpp index e5abbe0..75bca4f 100644 --- a/src/io_thread.cpp +++ b/src/io_thread.cpp @@ -62,7 +62,7 @@ int xs::io_thread_t::get_load () return poller->get_load (); } -void xs::io_thread_t::in_event () +void xs::io_thread_t::in_event (fd_t fd_) { // TODO: Do we want to limit number of commands I/O thread can // process in a single go? @@ -83,7 +83,7 @@ void xs::io_thread_t::in_event () } } -void xs::io_thread_t::out_event () +void xs::io_thread_t::out_event (fd_t fd_) { // We are never polling for POLLOUT here. This function is never called. xs_assert (false); -- cgit v1.2.3