diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-01 06:14:21 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-01 06:14:21 +0000 |
commit | a6e4525b321ec4fd98813dd41f4be5b04586bdde (patch) | |
tree | 26ece72d961a02e3ba2f13173205666e40162491 /tests/Process_Manager_Test.cpp | |
parent | f074b25464c690005765403230296990978a7d70 (diff) | |
download | ATCD-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.cpp | 5 |
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, |