10#include <cosmos/BitMask.hxx>
11#include <cosmos/proc/SigSet.hxx>
12#include <cosmos/memory.hxx>
20 void set_action(
const Signal sig,
const SigAction &action, SigAction *old);
21 void get_action(
const Signal, SigAction&);
36 NO_CHILD_STOP = SA_NOCLDSTOP,
38 NO_CHILD_WAIT = SA_NOCLDWAIT,
40 NO_DEFER = SA_NODEFER,
42 ON_STACK = SA_ONSTACK,
49 RESET_HANDLER =
static_cast<int>(SA_RESETHAND),
56 RESTORER = 0x04000000,
59 UNSUPPORTED = SA_UNSUPPORTED,
61 EXPOSE_TAGBITS = SA_EXPOSE_TAGBITS,
107 const auto had_siginfo = (m_raw.sa_flags & SA_SIGINFO) != 0;
108 m_raw.sa_flags = flags.
raw();
111 m_raw.sa_flags |= SA_SIGINFO;
113 m_raw.sa_flags &= ~SA_SIGINFO;
119 return Flags{m_raw.sa_flags};
124 const auto mask =
reinterpret_cast<const SigSet*
>(&m_raw.sa_mask);
135 auto mask =
reinterpret_cast<SigSet*
>(&m_raw.sa_mask);
144 void setHandler(SimpleHandler handler);
151 void setHandler(InfoHandler handler);
162 if (std::holds_alternative<SimpleHandler>(m_handler)) {
163 return std::get<SimpleHandler>(m_handler);
171 if (std::holds_alternative<InfoHandler>(m_handler)) {
172 return std::get<InfoHandler>(m_handler);
179 const struct sigaction*
raw()
const {
190 void updateFromOld(InfoHandler info, SimpleHandler simple);
195 struct sigaction m_raw;
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
Data type used with signal::set_action() for controlling asynchronous signal delivery.
static const SimpleHandler DEFAULT
Special value of SimpleHandler to configure the default signal action as documented in man 7 signal.
void setFlags(const Flags flags)
Set new flags.
struct sigaction * raw()
Read-write low-level access to the underlying data structure.
void(*)(const Signal) SimpleHandler
Simple signal handler for receiving only the Signal number.
Flags getFlags() const
Retrieve the current flags.
std::variant< SimpleHandler, InfoHandler > m_handler
The currently configured callback.
std::optional< SimpleHandler > getSimpleHandler() const
Returns the currently set SimpleHandler, if any.
static const SimpleHandler UNKNOWN
Special value of SimpleHandler in case a custom non-libcosmos handler is installed.
static const SimpleHandler IGNORE
Special value of SimpleHandler to ignore signals.
SigSet & mask()
Access and possibly change the configured signal mask.
std::optional< InfoHandler > getInfoHandler() const
Returns the currently set InfoHandler, if any.
Flag
Settings influencing the behaviour of signal::set_action().
SigAction(const no_init_t)
Leaves underlying data uninitialized.
void clear()
overwrite the underlying data structure with zeroes.
const SigSet & mask() const
Access the currently set signal mask.
void(*)(const SigInfo &) InfoHandler
Extended signal handler for receiving additional SigInfo data.
SigAction()
Creates a zero-initialized object.
const struct sigaction * raw() const
Read-only low-level access to the underlying data structure.
Signal information struct used when receiving signals.
A bit set of signal numbers for use in system calls.
Represents a POSIX signal number and offers a minimal API around it.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Type used to invoke constructors that explicitly don't zero-initialize low level data structures.