summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-14 06:30:06 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-14 06:30:06 +0000
commit6c2d206d92e1a65206097b8b1ceb5ee2b26c614e (patch)
tree33bd534b39f1e5bf30c4f56bf7f08e17dd5329ad /ace/Timer_Queue.h
parent150dd3b206f682eab457909da327025f08e46e3a (diff)
downloadATCD-6c2d206d92e1a65206097b8b1ceb5ee2b26c614e.tar.gz
foo
Diffstat (limited to 'ace/Timer_Queue.h')
-rw-r--r--ace/Timer_Queue.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/ace/Timer_Queue.h b/ace/Timer_Queue.h
index 454ba44f0e1..f44abd3edaf 100644
--- a/ace/Timer_Queue.h
+++ b/ace/Timer_Queue.h
@@ -183,23 +183,12 @@ protected:
virtual ACE_Timer_Queue_Iterator &iterator (void) = 0;
// Returns a pointer to this <ACE_Timer_Queue>'s iterator.
- virtual int timer_id (void);
- // Returns a timer id that uniquely identifies this timer. This id
- // can be used to cancel a timer via the <cancel (int)> method. The
- // timer id returned from this method will never == -1 to avoid
- // conflicts with other failure return values.
-
#if defined (ACE_MT_SAFE)
ACE_Recursive_Thread_Mutex lock_;
// Synchronization variable for the MT_SAFE ACE_Reactor
#endif /* ACE_MT_SAFE */
private:
- int timer_id_;
- // Keeps track of the timer id that uniquely identifies each timer.
- // This id can be used to cancel a timer via the <cancel (int)>
- // method.
-
ACE_Time_Value timeout_;
// Returned by <calculate_timeout>.