server/dep/ACE_wrappers/ace/OS_NS_signal.cpp
Neo2003 23c920ca4b [10643] Update the ACE part we use to 5.8.2
Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
2010-10-25 20:36:51 +02:00

26 lines
538 B
C++

// $Id: OS_NS_signal.cpp 91286 2010-08-05 09:04:31Z johnnyw $
#include "ace/OS_NS_signal.h"
#if !defined (ACE_HAS_INLINED_OSCALLS)
# include "ace/OS_NS_signal.inl"
#endif /* ACE_HAS_INLINED_OSCALLS */
#if !defined (ACE_HAS_SIGINFO_T)
siginfo_t::siginfo_t (ACE_HANDLE handle)
: si_handle_ (handle),
si_handles_ (&handle)
{
}
siginfo_t::siginfo_t (ACE_HANDLE *handles)
: si_handle_ (handles[0]),
si_handles_ (handles)
{
}
#endif /* ACE_HAS_SIGINFO_T */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_END_VERSIONED_NAMESPACE_DECL