summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue.i
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 08:57:46 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 08:57:46 +0000
commit012fb30e9b48d97063208ff6839d4a498b00e131 (patch)
treeb61b6fdbc394404d1bf5d27e192d0d88cc057cab /ace/Timer_Queue.i
parentbb1f5d39959cfa83fb69c44daca57f326bf5c927 (diff)
downloadATCD-irfans_branch_1.tar.gz
This commit was manufactured by cvs2svn to create branchirfans_branch_1
'irfans_branch_1'.
Diffstat (limited to 'ace/Timer_Queue.i')
-rw-r--r--ace/Timer_Queue.i22
1 files changed, 0 insertions, 22 deletions
diff --git a/ace/Timer_Queue.i b/ace/Timer_Queue.i
deleted file mode 100644
index 41e4324e61e..00000000000
--- a/ace/Timer_Queue.i
+++ /dev/null
@@ -1,22 +0,0 @@
-/* -*- C++ -*- */
-
-template <class TYPE, class FUNCTOR> ACE_INLINE void
-ACE_Timer_Queue_T<TYPE, FUNCTOR>::timer_skew (const ACE_Time_Value &skew)
-{
- timer_skew_ = skew;
-}
-
-template <class TYPE, class FUNCTOR> ACE_INLINE const ACE_Time_Value &
-ACE_Timer_Queue_T<TYPE, FUNCTOR>::timer_skew (void) const
-{
- return timer_skew_;
-}
-
-template <class TYPE, class FUNCTOR> ACE_INLINE int
-ACE_Timer_Queue_T<TYPE, FUNCTOR>::expire (void)
-{
- if (!this->is_empty ())
- return this->expire (this->gettimeofday () + timer_skew_);
- else
- return 0;
-}