diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-15 00:42:46 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-15 00:42:46 +0000 |
commit | 3af8e3b65c82aecc76d8467ab3bf49855949968f (patch) | |
tree | b671371dc6233383658f8a6c6dac9cb2e7ec6ce7 /ace/Timer_Wheel_T.cpp | |
parent | d17a17552c52eb6332ccfd115639ea9279f2eebc (diff) | |
download | ATCD-3af8e3b65c82aecc76d8467ab3bf49855949968f.tar.gz |
Fixed a bug with earliest time pointers not being set correctly.
Diffstat (limited to 'ace/Timer_Wheel_T.cpp')
-rw-r--r-- | ace/Timer_Wheel_T.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp index f52425ef40b..66d7880f563 100644 --- a/ace/Timer_Wheel_T.cpp +++ b/ace/Timer_Wheel_T.cpp @@ -473,7 +473,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::reschedule (ACE_Timer_Node_T<TYPE> * // See if we need to update the earliest time if (this->earliest_time () == ACE_Time_Value::zero - || this->earliest_time () < expired->get_timer_value ()) + || expired->get_timer_value () < this->earliest_time ()) this->earliest_pos_ = pos; // Insert time into dummy node |