diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-06 00:37:20 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-06 00:37:20 +0000 |
commit | e48ebc0d073fd862fbb69b042c600154226978e4 (patch) | |
tree | b767fe69816602739ed1087e347a2a606e429a30 /ace/Reactor.i | |
parent | 6380bb106065812c10e0707e5e56d886eaf2a216 (diff) | |
download | ATCD-e48ebc0d073fd862fbb69b042c600154226978e4.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Reactor.i')
-rw-r--r-- | ace/Reactor.i | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/ace/Reactor.i b/ace/Reactor.i index 2602450de43..8d3af9e94c3 100644 --- a/ace/Reactor.i +++ b/ace/Reactor.i @@ -52,17 +52,22 @@ ACE_Reactor::remove_handler (int signum, // Note the queue handles its own locking. ACE_INLINE int -ACE_Reactor::cancel_timer (ACE_Event_Handler *handler) +ACE_Reactor::cancel_timer (ACE_Event_Handler *handler, + int dont_call_handle_close) { ACE_TRACE ("ACE_Reactor::cancel_timer"); - return this->timer_queue_->cancel (handler); + return this->timer_queue_->cancel (handler, + dont_call_handle_close); } ACE_INLINE int -ACE_Reactor::cancel_timer (int timer_id, const void **arg) +ACE_Reactor::cancel_timer (int timer_id, + const void **arg, + int dont_call_handle_close) { ACE_TRACE ("ACE_Reactor::cancel_timer"); - return this->timer_queue_->cancel (timer_id, arg); + return this->timer_queue_->cancel (timer_id, arg, + dont_call_handle_close); } // Performs operations on the "ready" bits. |