#include <SigSet.h>
Public Member Functions | |
SigSet () | |
Default constructor creates SigSet object with an empty signal set. | |
SigSet (sigset_t *source_) | |
Copy constructor from source_ . | |
~SigSet () | |
Destructor. | |
int | empty (void) |
This function initializes a signal set to be empty, no signals in it. | |
int | fill (void) |
This function initializes a signal set to be full; all the signals defined by POSIX will be in the set. | |
int | add (int signo_) |
This function adds the signal numbered signo_ to the set. | |
int | del (int signo_) |
This function removes the signal signo_ from the set. | |
int | is_member (int signo_) |
Use this function to tell whether the signal signo_ is in the set. | |
operator sigset_t * () | |
Conversion operator to sigset_t structure. | |
Private Attributes | |
sigset_t | m_sigset |
POSIX signal set. |
Definition at line 52 of file SigSet.h.
ASSA::SigSet::SigSet | ( | ) | [inline] |
ASSA::SigSet::SigSet | ( | sigset_t * | source_ | ) | [inline] |
ASSA::SigSet::~SigSet | ( | ) | [inline] |
int ASSA::SigSet::add | ( | int | signo_ | ) | [inline] |
int ASSA::SigSet::del | ( | int | signo_ | ) | [inline] |
int ASSA::SigSet::empty | ( | void | ) | [inline] |
int ASSA::SigSet::fill | ( | void | ) | [inline] |
int ASSA::SigSet::is_member | ( | int | signo_ | ) | [inline] |
ASSA::SigSet::operator sigset_t * | ( | ) | [inline] |
sigset_t ASSA::SigSet::m_sigset [private] |
POSIX signal set.
Definition at line 113 of file SigSet.h.
Referenced by add(), del(), empty(), fill(), is_member(), operator sigset_t *(), and SigSet().