summaryrefslogtreecommitdiff
path: root/ace/WFMO_Reactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-06-20 13:35:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-06-20 13:35:51 +0000
commitcf239cfabd343f34e18608dcdae0a084f5c804ab (patch)
tree8a8b7e3ceb2458a8df048947949c971a84a00221 /ace/WFMO_Reactor.cpp
parentde6d44bf3e823837141de5308115648d2ce1f9be (diff)
downloadATCD-cf239cfabd343f34e18608dcdae0a084f5c804ab.tar.gz
ChangeLogTag:Tue Jun 20 07:37:18 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r--ace/WFMO_Reactor.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp
index c5ec97b0a7d..98ab93ee730 100644
--- a/ace/WFMO_Reactor.cpp
+++ b/ace/WFMO_Reactor.cpp
@@ -1178,17 +1178,29 @@ ACE_WFMO_Reactor::set_sig_handler (ACE_Sig_Handler *signal_handler)
return 0;
}
+ACE_Timer_Queue *
+ACE_WFMO_Reactor::timer_queue (void) const
+{
+ return this->timer_queue_;
+}
+
int
-ACE_WFMO_Reactor::set_timer_queue (ACE_Timer_Queue *timer_queue)
+ACE_WFMO_Reactor::timer_queue (ACE_Timer_Queue *tq)
{
if (this->timer_queue_ != 0 && this->delete_timer_queue_ != 0)
delete this->timer_queue_;
- this->timer_queue_ = timer_queue;
+ this->timer_queue_ = tq;
this->delete_timer_queue_ = 0;
return 0;
}
int
+ACE_WFMO_Reactor::set_timer_queue (ACE_Timer_Queue *tq)
+{
+ return this->timer_queue (tq);
+}
+
+int
ACE_WFMO_Reactor::close (void)
{
// This GUARD is necessary since we are updating shared state.