/* -*- C++ -*- */ template ACE_INLINE void ACE_Timer_Queue_T::timer_skew (const ACE_Time_Value &skew) { timer_skew_ = skew; } template ACE_INLINE const ACE_Time_Value & ACE_Timer_Queue_T::timer_skew (void) const { return timer_skew_; } template ACE_INLINE int ACE_Timer_Queue_T::expire (void) { if (!this->is_empty ()) return this->expire (this->gettimeofday () + timer_skew_); else return 0; }