server/dep/ACE_wrappers/ace/OS_NS_signal.cpp
zerg b8d773091a [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>
2010-12-14 17:37:42 +03:00

24 lines
536 B
C++

// $Id: OS_NS_signal.cpp 91809 2010-09-17 07:20:41Z 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