diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-11-30 04:36:19 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-11-30 04:36:19 +0000 |
commit | 6cbef07d6756eb59e5b891d523312be5ab60e985 (patch) | |
tree | 19ccac61ad0c75d9cdc8e9e3c41d017bebda7f77 | |
parent | b01e47cf7bbe9ff99aea439ec64f669003268fbd (diff) | |
download | ATCD-6cbef07d6756eb59e5b891d523312be5ab60e985.tar.gz |
.
-rw-r--r-- | ace/Reactor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Reactor.h b/ace/Reactor.h index 87e1bf8b71c..d9789747de1 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -303,14 +303,14 @@ public: virtual int cancel_timer (ACE_Event_Handler *event_handler, int dont_call_handle_close = 1); - // Cancel all Event_Handlers that match the address of + // Cancel all <Event_Handler>s that match the address of // <event_handler>. Returns number of handlers cancelled. virtual int cancel_timer (long timer_id, const void **arg = 0, int dont_call_handle_close = 1); - // Cancel the single Event_Handler that matches the <timer_id> value - // (which was returned from the schedule method). If arg is + // Cancel the single <Event_Handler> that matches the <timer_id> + // value, which was returned from the schedule method. If arg is // non-NULL then it will be set to point to the ``magic cookie'' // argument passed in when the Event_Handler was registered. This // makes it possible to free up the memory and avoid memory leaks. |