7#include <cosmos/proc/types.hxx>
8#include <cosmos/utils.hxx>
30 static constexpr fill_t filled{};
39 explicit SigSet(
const std::initializer_list<Signal> &siglist) {
40 for (
auto &sig: siglist) {
46 void clear() { ::sigemptyset(&m_set); }
48 void fill() { ::sigfillset(&m_set); }
51 bool isSet(
const Signal s)
const { return ::sigismember(&m_set, to_integral(s.
raw())); }
53 void set(
const Signal s) { ::sigaddset(&m_set, to_integral(s.
raw())); }
55 void del(
const Signal s) { ::sigdelset(&m_set, to_integral(s.
raw())); }
58 sigset_t*
raw() {
return &m_set; }
59 const sigset_t*
raw()
const {
return &m_set; }
A bit set of signal numbers for use in system calls.
void del(const Signal s)
Removes the given signal from the set.
bool isSet(const Signal s) const
Returns whether the given signal is set.
void clear()
Clears all signals in the set.
SigSet()
Creates an empty signal set.
SigSet(const std::initializer_list< Signal > &siglist)
Creates a signal set with the given list of signals set.
sigset_t * raw()
Returns a pointer to the raw sigset_t data structure for use in API calls.
SigSet(const fill_t)
Creates a fully set signal set.
void set(const Signal s)
Sets the given signal in the set.
void fill()
Sets all signals in the set.
Represents a POSIX signal number and offers a minimal API around it.
SignalNr raw() const
Returns the primitive signal number stored in this object.