summaryrefslogtreecommitdiff
path: root/tests/Process_Manager_Test.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-09-01 06:14:21 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-09-01 06:14:21 +0000
commita6e4525b321ec4fd98813dd41f4be5b04586bdde (patch)
tree26ece72d961a02e3ba2f13173205666e40162491 /tests/Process_Manager_Test.cpp
parentf074b25464c690005765403230296990978a7d70 (diff)
downloadATCD-a6e4525b321ec4fd98813dd41f4be5b04586bdde.tar.gz
ChangeLogTag:Wed Sep 1 00:05:04 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'tests/Process_Manager_Test.cpp')
-rw-r--r--tests/Process_Manager_Test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/Process_Manager_Test.cpp b/tests/Process_Manager_Test.cpp
index 0b55bcee008..ab50e84779b 100644
--- a/tests/Process_Manager_Test.cpp
+++ b/tests/Process_Manager_Test.cpp
@@ -126,7 +126,7 @@ one_child_sig_handler (void *)
// child without blocking. Note that it also decrements
// the count of waiting children by one.
pid_t pid =
- ACE_Process_Manager::instance ()->wait
+ ACE_Process_Manager::instance ()->reap
(-1,
&child_exit_status,
WNOHANG);
@@ -432,8 +432,7 @@ one_child_worker_parent (void *)
// the counting of remaining processes. Therefore, this <wait>
// method is less portable than the version that's shown below in
// the <multiple_children_worker_parent> function.
- int result = ACE_Process_Manager::instance ()->wait
- ((ACE_Time_Value *) 0);
+ int result = ACE_Process_Manager::instance ()->wait ();
ACE_ASSERT (result != -1);
ACE_DEBUG ((LM_DEBUG,