summaryrefslogtreecommitdiff
path: root/ace/Reactor.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-03-07 20:48:44 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-03-07 20:48:44 +0000
commit78bcb1383d0679d171c589b34745de3d5df0ff46 (patch)
treec559cf19202ecdc825aef922350cb9ed2d4bce41 /ace/Reactor.h
parent180b71983dc0d0df3f4ccd1e25555a82b7547de4 (diff)
downloadATCD-78bcb1383d0679d171c589b34745de3d5df0ff46.tar.gz
ChangeLogTag:Wed Mar 7 12:41:05 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Reactor.h')
-rw-r--r--ace/Reactor.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Reactor.h b/ace/Reactor.h
index 316b3742da9..7c375fab933 100644
--- a/ace/Reactor.h
+++ b/ace/Reactor.h
@@ -406,18 +406,18 @@ public:
* value to the <event_handler>'s <handle_timeout> callback method.
* If <interval> is != to <ACE_Time_Value::zero> then it is used to
* reschedule the <event_handler> automatically, also specified
- * using relative time. This method returns a <timer_id> that
+ * using relative time. This method returns a timer id that
* uniquely identifies the <event_handler> in an internal list.
- * This <timer_id> can be used to cancel an <event_handler> before
- * it expires. The cancellation ensures that <timer_ids> are unique
- * up to values of greater than 2 billion timers. As long as timers
+ * This timer id can be used to cancel an <event_handler> before it
+ * expires. The cancellation ensures that timer ids are unique up
+ * to values of greater than 2 billion timers. As long as timers
* don't stay around longer than this there should be no problems
* with accidentally deleting the wrong timer. Returns -1 on
- * failure (which is guaranteed never to be a valid <timer_id>.
+ * failure (which is guaranteed never to be a valid timer id).
*/
virtual long schedule_timer (ACE_Event_Handler *event_handler,
const void *arg,
- const ACE_Time_Value &delta,
+ const ACE_Time_Value &delay,
const ACE_Time_Value &interval = ACE_Time_Value::zero);
/**