diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-27 19:21:58 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-27 19:21:58 +0000 |
commit | 0d55c2812410c9a2e2e88288c6b3a83fa87fc412 (patch) | |
tree | a00102f3a0abbb685730d611a3c9ff671404afce /ace/Timer_Wheel_T.cpp | |
parent | 6dcf19218f48998a5229d88080e3a3fccf1c96da (diff) | |
download | ATCD-0d55c2812410c9a2e2e88288c6b3a83fa87fc412.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Timer_Wheel_T.cpp')
-rw-r--r-- | ace/Timer_Wheel_T.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp index c868436b831..ae995155fd6 100644 --- a/ace/Timer_Wheel_T.cpp +++ b/ace/Timer_Wheel_T.cpp @@ -316,7 +316,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR>::alloc_node (void) } template <class TYPE, class FUNCTOR> void -ACE_Timer_Wheel_T<TYPE, FUNCTOR>::free_node (NODE *node) +ACE_Timer_Wheel_T<TYPE, FUNCTOR>::free_node (ACE_Timer_Node_T<TYPE, FUNCTOR> *node) { // Add to the beginning of the freelist node->next_ = this->freelist_; @@ -362,7 +362,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR>::remove (void) } template <class TYPE, class FUNCTOR> void -ACE_Timer_Wheel_T<TYPE, FUNCTOR>::reschedule (NODE *expired) +ACE_Timer_Wheel_T<TYPE, FUNCTOR>::reschedule (ACE_Timer_Node_T<TYPE, FUNCTOR> *expired) { ACE_TRACE ("ACE_Timer_Wheel_T::reschedule"); |