diff options
Diffstat (limited to 'dep/acelite/ace/Process_Manager.cpp')
-rw-r--r-- | dep/acelite/ace/Process_Manager.cpp | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/dep/acelite/ace/Process_Manager.cpp b/dep/acelite/ace/Process_Manager.cpp index 0c512d76a3b..e9be7773a8b 100644 --- a/dep/acelite/ace/Process_Manager.cpp +++ b/dep/acelite/ace/Process_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Process_Manager.cpp 89454 2010-03-11 09:35:25Z johnnyw $ +// $Id: Process_Manager.cpp 91688 2010-09-09 11:21:50Z johnnyw $ // Process_Manager.cpp #include "ace/Process_Manager.h" @@ -22,10 +22,6 @@ #include "ace/os_include/os_typeinfo.h" #include "ace/Truncate.h" -ACE_RCSID (ace, - Process_Manager, - "$Id: Process_Manager.cpp 89454 2010-03-11 09:35:25Z johnnyw $") - #if defined (ACE_HAS_SIG_C_FUNC) extern "C" void ACE_Process_Manager_cleanup (void *instance, void *arg) @@ -974,22 +970,6 @@ ACE_Process_Manager::wait (pid_t pid, return pid; } -// Legacy method: - -int -ACE_Process_Manager::reap (pid_t pid, - ACE_exitcode *stat_loc, - int options) -{ - ACE_TRACE ("ACE_Process_Manager::reap"); - - return this->wait (pid, - (ACE_BIT_ENABLED (options, WNOHANG) - ? ACE_Time_Value::zero - : ACE_Time_Value::max_time), - stat_loc); -} - // Notify either the process-specific handler or the generic handler. // If process-specific, call handle_close on the handler. Returns 1 // if process found, 0 if not. Must be called with locks held. |