diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-09-14 21:03:23 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-09-14 21:03:23 +0000 |
commit | dc55bc5a9506b3c72240617b057c96ca7cde2810 (patch) | |
tree | 8b51a0a36bab73387721f060437089d7b7b9f46a /ace/Process_Manager.cpp | |
parent | a7c2d277f7e53682de495ab2ce290bf6e801a6cf (diff) | |
download | ATCD-dc55bc5a9506b3c72240617b057c96ca7cde2810.tar.gz |
ChangeLogTag: Tue Sep 14 16:01:04 1999 Christopher Kohlhoff <chris@kohlhoff.com>
Diffstat (limited to 'ace/Process_Manager.cpp')
-rw-r--r-- | ace/Process_Manager.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ace/Process_Manager.cpp b/ace/Process_Manager.cpp index 6740ad113b7..7c6490539d3 100644 --- a/ace/Process_Manager.cpp +++ b/ace/Process_Manager.cpp @@ -14,7 +14,7 @@ ACE_RCSID(ace, Process_Manager, "$Id$") -class ACE_Managed_Process : public ACE_Process +class ACE_Managed_Process : public ACE_Process { // = TITLE // <ACE_Managed_Process> is just an <ACE_Process> with an @@ -755,7 +755,8 @@ ACE_Process_Manager::wait (pid_t pid, HANDLE[current_count_], ACE_INVALID_PID); - for (size_t i = 0; + size_t i; + for (i = 0; i < current_count_; ++i) handles[i] = @@ -861,7 +862,7 @@ ACE_Process_Manager::wait (pid_t pid, pid)); else { - this->notify_proc_handler (idx, + this->notify_proc_handler (idx, *status); this->remove_proc (idx); } |