diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-07-08 18:55:54 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-07-08 18:55:54 +0000 |
commit | 308bacf6946f0d0d96d301505c94c060773357b1 (patch) | |
tree | 1b9ee0c87054bf664e665a2c277bc33acd85681c /ace/Timer_Wheel_T.cpp | |
parent | 57f51c8119d99dde8922b24d1e139d44ad3ec2ca (diff) | |
download | ATCD-308bacf6946f0d0d96d301505c94c060773357b1.tar.gz |
ChangeLogTag: Tue Jul 08 14:49:38 2003 Irfan Pyarali <irfan@oomworks.com>
Diffstat (limited to 'ace/Timer_Wheel_T.cpp')
-rw-r--r-- | ace/Timer_Wheel_T.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp index dab38390c41..4bcdb11b3e9 100644 --- a/ace/Timer_Wheel_T.cpp +++ b/ace/Timer_Wheel_T.cpp @@ -533,7 +533,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (const TYPE& type, int skip_c ACE_Timer_Node_T<TYPE>* tmp = n; n = n->get_next (); - this->cancel_i (tmp, skip_close); + this->cancel_i (tmp); } else { @@ -618,7 +618,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, if (act != 0) *act = n->get_act (); - this->cancel_i (n, skip_close); + this->cancel_i (n); if (recalc) this->recalc_earliest (last); @@ -630,7 +630,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, /// Shared subset of the two cancel() methods. template <class TYPE, class FUNCTOR, class ACE_LOCK> void -ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel_i (ACE_Timer_Node_T<TYPE>* n, int skip_close) +ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel_i (ACE_Timer_Node_T<TYPE>* n) { this->unlink (n); this->free_node (n); |