summaryrefslogtreecommitdiff
path: root/ace/Timer_List.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-11 05:57:18 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-11 05:57:18 +0000
commit3fb008b1b50c5e9f581fa2f8a711820b9dca1121 (patch)
tree39972ead8362aa485203e0f337ced9af943e1fbc /ace/Timer_List.h
parent60f625d6fc0110cc501eb17036a4c7d7eb13ddf8 (diff)
downloadATCD-3fb008b1b50c5e9f581fa2f8a711820b9dca1121.tar.gz
foo
Diffstat (limited to 'ace/Timer_List.h')
-rw-r--r--ace/Timer_List.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Timer_List.h b/ace/Timer_List.h
index fa25fdbafa0..34a47d0fd9b 100644
--- a/ace/Timer_List.h
+++ b/ace/Timer_List.h
@@ -35,7 +35,7 @@ public:
// Constructor.
virtual int next (ACE_Timer_Node *&timer_node,
- const ACE_Time_Value &cur_time);
+ const ACE_Time_Value &cur_time);
// Pass back the next <timer_node> that hasn't been seen yet, if its
// <time_value_> <= <cur_time>. In addition, moves the timer queue
// forward by one node. Returns 0 when all <timer_nodes> have been
@@ -47,7 +47,7 @@ protected:
};
class ACE_Export ACE_Timer_List : public ACE_Timer_Queue
- // = TITLE
+ // = TITLE
// Provides a simple implementation of timers.
//
// = DESCRIPTION
@@ -81,9 +81,9 @@ public:
// Returns the time of the earlier node in the <ACE_Timer_List>.
virtual int schedule (ACE_Event_Handler *event_handler,
- const void *arg,
- const ACE_Time_Value &delay,
- const ACE_Time_Value &interval = ACE_Time_Value::zero);
+ const void *arg,
+ const ACE_Time_Value &delay,
+ const ACE_Time_Value &interval = ACE_Time_Value::zero);
// Schedule an <event_handler> that will expire after <delay> amount
// of time. If it expires then <arg> is passed in as the value to
// the <event_handler>'s <handle_timeout> callback method. If