summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-03-17 13:37:31 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-03-17 13:37:31 +0000
commitd82b448227c2c6d2dd8e885428941f74d6123f6c (patch)
tree5f71e933a489d8f09c7ccf497425a3c0e5a8d309
parent0206a8fc4309396f239af8d6579a935783ff9d65 (diff)
downloadATCD-d82b448227c2c6d2dd8e885428941f74d6123f6c.tar.gz
ChangeLogTag: Fri Mar 17 13:37:02 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/TP_Reactor.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/ace/TP_Reactor.cpp b/ace/TP_Reactor.cpp
index 34736cc81ac..23e7ec84454 100644
--- a/ace/TP_Reactor.cpp
+++ b/ace/TP_Reactor.cpp
@@ -617,9 +617,7 @@ ACE_TP_Reactor::dispatch_socket_event (ACE_EH_Dispatch_Info &dispatch_info)
{
ACE_TRACE ("ACE_TP_Reactor::dispatch_socket_event");
- ACE_HANDLE const handle = dispatch_info.handle_;
ACE_Event_Handler * const event_handler = dispatch_info.event_handler_;
- ACE_Reactor_Mask const mask = dispatch_info.mask_;
ACE_EH_PTMF const callback = dispatch_info.callback_;
// Check for removed handlers.
@@ -633,7 +631,7 @@ ACE_TP_Reactor::dispatch_socket_event (ACE_EH_Dispatch_Info &dispatch_info)
// handling other things.
int status = 1;
while (status > 0)
- status = (event_handler->*callback) (handle);
+ status = (event_handler->*callback) (dispatch_info.handle_);
// Post process socket event
return this->post_process_socket_event (dispatch_info, status);