diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-02-24 14:34:41 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-02-24 14:34:41 +0000 |
commit | ecce278daefcf3b8b80e44c743b3cb39c772795d (patch) | |
tree | 66be7f83e0309586f7c099854899387182cef112 /ace | |
parent | 4c31ea39847f6129d362b4fd8bcf8bc4b31c8081 (diff) | |
download | ATCD-ecce278daefcf3b8b80e44c743b3cb39c772795d.tar.gz |
ChangelogTag: Fri Feb 24 13:55:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Process_Manager.cpp | 2 | ||||
-rw-r--r-- | ace/Process_Manager.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ace/Process_Manager.cpp b/ace/Process_Manager.cpp index 67940f4516c..9589885ca84 100644 --- a/ace/Process_Manager.cpp +++ b/ace/Process_Manager.cpp @@ -774,7 +774,7 @@ ACE_Process_Manager::wait (pid_t pid, { // Wait for any Process spawned by this Process_Manager. #if defined (ACE_WIN32) - HANDLE *handles; + HANDLE *handles = 0; ACE_NEW_RETURN (handles, HANDLE[this->current_count_], diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h index 22bcd3d4c2c..8d50e29a2a1 100644 --- a/ace/Process_Manager.h +++ b/ace/Process_Manager.h @@ -252,6 +252,7 @@ public: ACE_exitcode *status = 0); /** + * @deprecated * Reap the result of a single process by calling <ACE_OS::waitpid>, * therefore, this method is not portable to Win32. If the child is * successfully reaped, <remove> is called automatically. This |