chore(Deps/Acelite): Update to 6.5.10 (#3450)

This commit is contained in:
Kargatum
2020-11-11 22:09:02 +07:00
committed by GitHub
parent a93565b6da
commit e27201cee2
921 changed files with 18238 additions and 33164 deletions

View File

@@ -4,7 +4,7 @@
/**
* @file Process_Manager.h
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
* @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
*/
//=============================================================================
@@ -243,6 +243,15 @@ public:
* @retval 0 on success; -1 on failure.
*/
int wait (const ACE_Time_Value &timeout = ACE_Time_Value::max_time);
#if defined (ACE_HAS_CPP11)
/// @sa wait
template< class Rep, class Period >
int wait (const std::chrono::duration<Rep, Period>& timeout)
{
ACE_Time_Value const tv (timeout);
return this->wait (tv);
}
#endif
/**
* Wait up to @a timeout for a single specified process to terminate.
@@ -260,6 +269,17 @@ public:
pid_t wait (pid_t pid,
const ACE_Time_Value &timeout,
ACE_exitcode *status = 0);
#if defined (ACE_HAS_CPP11)
/// @sa wait
template< class Rep, class Period >
pid_t wait (pid_t pid,
const std::chrono::duration<Rep, Period>& timeout,
ACE_exitcode *status = 0)
{
ACE_Time_Value const tv (timeout);
return this->wait (pid, tv, status);
}
#endif
/**
* Wait indefinitely for a single, specified process to terminate.
@@ -399,6 +419,8 @@ private:
/// Dump the state of an object.
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
};
/// Resize the pool of Process_Descriptors.