summaryrefslogtreecommitdiff
path: root/ace/Reactor.cpp
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-24 23:18:39 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-24 23:18:39 +0000
commit14f4a80535786b8bf4fd6d0110f5e471643dcae7 (patch)
tree985365a6398b55486da847bfe518c0156c0a9022 /ace/Reactor.cpp
parentf8f8bfe9fd9ace8bfa5935b41a1886e756f4d59b (diff)
downloadATCD-14f4a80535786b8bf4fd6d0110f5e471643dcae7.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Reactor.cpp')
-rw-r--r--ace/Reactor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp
index 4d88cb95291..a85d968909a 100644
--- a/ace/Reactor.cpp
+++ b/ace/Reactor.cpp
@@ -1346,7 +1346,6 @@ ACE_Reactor::wait_for_multiple_events (ACE_Reactor_Handle_Set &dispatch_set,
{
ACE_TRACE ("ACE_Reactor::wait_for_multiple_events");
u_long width = 0;
- ACE_Time_Value the_timeout(0) ;
int number_of_active_handles = this->any_ready (dispatch_set);
@@ -1357,7 +1356,8 @@ ACE_Reactor::wait_for_multiple_events (ACE_Reactor_Handle_Set &dispatch_set,
{
do
{
- (void) this->timer_queue_->calculate_timeout (max_wait_time, &the_timeout);
+ (void) this->timer_queue_->calculate_timeout (max_wait_time,
+ max_wait_time);
width = (u_long) this->handler_rep_.max_handlep1 ();
@@ -1369,7 +1369,7 @@ ACE_Reactor::wait_for_multiple_events (ACE_Reactor_Handle_Set &dispatch_set,
dispatch_set.rd_mask_,
dispatch_set.wr_mask_,
dispatch_set.ex_mask_,
- &the_timeout);
+ max_wait_time);
}
while (number_of_active_handles == -1 && this->handle_error () > 0);