#include <OS_NS_signal.h>
Public Member Functions | |
siginfo_t (ACE_HANDLE handle) | |
siginfo_t (ACE_HANDLE *handles) | |
Public Attributes | |
ACE_HANDLE | si_handle_ |
Win32 HANDLE that has become signaled. | |
ACE_HANDLE * | si_handles_ |
Array of Win32 HANDLEs all of which have become signaled. |
|
Definition at line 12 of file OS_NS_signal.cpp.
00013 : si_handle_ (handle), 00014 si_handles_ (&handle) 00015 { 00016 } |
|
Definition at line 18 of file OS_NS_signal.cpp.
00019 : si_handle_ (handles[0]), 00020 si_handles_ (handles) 00021 { 00022 } |
|
Win32 HANDLE that has become signaled.
Definition at line 57 of file OS_NS_signal.h. Referenced by ACE_Process_Manager::handle_signal(). |
|
Array of Win32 HANDLEs all of which have become signaled.
Definition at line 60 of file OS_NS_signal.h. |