|
| SigSet () |
| Creates an empty signal set.
|
|
| SigSet (const fill_t) |
| Creates a fully set signal set.
|
|
| SigSet (const std::initializer_list< Signal > &siglist) |
| Creates a signal set with the given list of signals set.
|
|
void | clear () |
| Clears all signals in the set.
|
|
void | fill () |
| Sets all signals in the set.
|
|
bool | isSet (const Signal s) const |
| Returns whether the given signal is set.
|
|
void | set (const Signal s) |
| Sets the given signal in the set.
|
|
void | del (const Signal s) |
| Removes the given signal from the set.
|
|
sigset_t * | raw () |
| Returns a pointer to the raw sigset_t data structure for use in API calls.
|
|
const sigset_t * | raw () const |
|
A bit set of signal numbers for use in system calls.
This type is needed to e.g. change a process's signal mask. It helps specifying a number of signals that should be operated on.
This data structure is surprisingly large (128 bytes), so copying it is best avoided.
- Note
- It is difficult to implement a proper operator== for SigSet, because the underlying data structure is supposed to be opaque on the one hand, and some kernel APIs don't seem to properly clear unused bits in returned sigsets e.g. in the oldaction return of
sigaction()
.
Definition at line 25 of file SigSet.hxx.