summaryrefslogtreecommitdiff
path: root/ace/WFMO_Reactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-03 18:26:32 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-03 18:26:32 +0000
commit476508361329e0c9a431fdbc86344c3a6caf0571 (patch)
tree4cf3ea03c84abac2a37ee8bfc4ec6cf47226b5bd /ace/WFMO_Reactor.cpp
parentcb1f0768e2db53d76f173c687003d098cf6bb456 (diff)
downloadATCD-476508361329e0c9a431fdbc86344c3a6caf0571.tar.gz
ChangeLogTag:Sat Jul 3 12:05:46 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r--ace/WFMO_Reactor.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp
index f30e0545bc5..8b541928394 100644
--- a/ace/WFMO_Reactor.cpp
+++ b/ace/WFMO_Reactor.cpp
@@ -1042,7 +1042,9 @@ ACE_WFMO_Reactor::open (size_t size,
if (tq == 0)
{
- ACE_NEW_RETURN (this->timer_queue_, ACE_Timer_Heap, -1);
+ ACE_NEW_RETURN (this->timer_queue_,
+ ACE_Timer_Heap,
+ -1);
this->delete_timer_queue_ = 1;
}
else
@@ -1057,7 +1059,9 @@ ACE_WFMO_Reactor::open (size_t size,
if (sh == 0)
{
- ACE_NEW_RETURN (this->signal_handler_, ACE_Sig_Handler, -1);
+ ACE_NEW_RETURN (this->signal_handler_,
+ ACE_Sig_Handler,
+ -1);
this->delete_signal_handler_ = 1;
}
else