[10874] Update ACE to v5.8.3

(based on zergtmn's repo commit 3a8c259)
(based on zergtmn's repo commit 946c1a8)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
zerg 2010-12-14 17:14:34 +03:00 committed by VladimirMangos
parent c38c876b1d
commit b8d773091a
343 changed files with 3060 additions and 7431 deletions

View file

@ -1,4 +1,4 @@
// $Id: Process_Manager.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $
// $Id: Process_Manager.cpp 91688 2010-09-09 11:21:50Z johnnyw $
// Process_Manager.cpp
#include "ace/Process_Manager.h"
@ -970,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.