summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-12 06:54:21 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-12 06:54:21 +0000
commitba4c754283c3b43616dd759c804bf84b7392a165 (patch)
tree4f9e9f777a183f580baecebc5a8a36de6751eeb7 /ace/Timer_Queue.cpp
parentf00e93ab21d314dd6300cf93ab81ad291c2a8622 (diff)
downloadATCD-ba4c754283c3b43616dd759c804bf84b7392a165.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Timer_Queue.cpp')
-rw-r--r--ace/Timer_Queue.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/ace/Timer_Queue.cpp b/ace/Timer_Queue.cpp
index c63169e772e..a3aa4e7a200 100644
--- a/ace/Timer_Queue.cpp
+++ b/ace/Timer_Queue.cpp
@@ -45,6 +45,14 @@ ACE_Timer_Node::ACE_Timer_Node (ACE_Event_Handler *h,
ACE_TRACE ("ACE_Timer_Node::ACE_Timer_Node");
}
+ACE_Timer_Queue_Iterator::ACE_Timer_Queue_Iterator (void)
+{
+}
+
+ACE_Timer_Queue_Iterator::~ACE_Timer_Queue_Iterator (void)
+{
+}
+
// Determines the maximum amount of time that the Reactor must wait
// before timing out. This is computed as the smaller of (1) the
// amount the caller requested when calling handle_events() and (2)
@@ -123,7 +131,7 @@ ACE_Timer_Queue::expire (const ACE_Time_Value &cur_time)
int number_of_timers_expired = 0;
- ACE_Timer_Queue_Iterator &iter (this->iter ());
+ ACE_Timer_Queue_Iterator &iter = this->iter ();
// Keep looping while there are timers remaining and the earliest
// timer is <= the <cur_time> passed in to the method.
@@ -136,7 +144,7 @@ ACE_Timer_Queue::expire (const ACE_Time_Value &cur_time)
(ACE_Event_Handler *) expired->handler_;
const void *arg = expired->arg_;
int reclaim = 1;
-
+
// Check if this is an interval timer.
if (expired->interval_ > ACE_Time_Value::zero)
{