libcosmos
Linux C++ System Programming Library
|
Data type used with signal::set_action() for controlling asynchronous signal delivery. More...
#include <SigAction.hxx>
Public Types | |
enum class | Flag : int { NO_CHILD_STOP = SA_NOCLDSTOP , NO_CHILD_WAIT = SA_NOCLDWAIT , NO_DEFER = SA_NODEFER , ON_STACK = SA_ONSTACK , RESET_HANDLER = static_cast<int>(SA_RESETHAND) , RESTART = SA_RESTART , SIGINFO = SA_SIGINFO , RESTORER = 0x04000000 } |
Settings influencing the behaviour of signal::set_action() . More... | |
using | Flags = BitMask<Flag> |
A mask of settings for set_action() . | |
using | SimpleHandler = void (*)(const Signal) |
Simple signal handler for receiving only the Signal number. | |
using | InfoHandler = void (*)(const SigInfo&) |
Extended signal handler for receiving additional SigInfo data. | |
Public Member Functions | |
SigAction () | |
Creates a zero-initialized object. | |
SigAction (const no_init_t) | |
Leaves underlying data uninitialized. | |
void | clear () |
overwrite the underlying data structure with zeroes. | |
void | setFlags (const Flags flags) |
Set new flags. | |
Flags | getFlags () const |
Retrieve the current flags. | |
const SigSet & | mask () const |
Access the currently set signal mask. | |
SigSet & | mask () |
Access and possibly change the configured signal mask. | |
void | setHandler (SimpleHandler handler) |
Sets a new SimpleHandler style signal handler function. | |
void | setHandler (InfoHandler handler) |
Sets a new InfoHandler style signal handler function. | |
std::optional< SimpleHandler > | getSimpleHandler () const |
Returns the currently set SimpleHandler, if any. | |
std::optional< InfoHandler > | getInfoHandler () const |
Returns the currently set InfoHandler, if any. | |
const struct sigaction * | raw () const |
Read-only low-level access to the underlying data structure. | |
Static Public Attributes | |
static const SimpleHandler | IGNORE = reinterpret_cast<SigAction::SimpleHandler>((void*)1) |
Special value of SimpleHandler to ignore signals. | |
static const SimpleHandler | DEFAULT = SigAction::SimpleHandler{nullptr} |
Special value of SimpleHandler to configure the default signal action as documented in man 7 signal . | |
static const SimpleHandler | UNKNOWN = reinterpret_cast<SigAction::SimpleHandler>((void*)2) |
Special value of SimpleHandler in case a custom non-libcosmos handler is installed. | |
Protected Member Functions | |
struct sigaction * | raw () |
Read-write low-level access to the underlying data structure. | |
void | updateFromOld (InfoHandler info, SimpleHandler simple) |
Protected Attributes | |
struct sigaction | m_raw |
Low level sigaction struct. | |
std::variant< SimpleHandler, InfoHandler > | m_handler |
The currently configured callback. | |
Friends | |
void | signal::set_action (const Signal, const SigAction &, SigAction *) |
void | signal::get_action (const Signal, SigAction &) |
Data type used with signal::set_action() for controlling asynchronous signal delivery.
Definition at line 28 of file SigAction.hxx.
using cosmos::SigAction::Flags = BitMask<Flag> |
A mask of settings for set_action()
.
Definition at line 66 of file SigAction.hxx.
using cosmos::SigAction::InfoHandler = void (*)(const SigInfo&) |
Extended signal handler for receiving additional SigInfo data.
Definition at line 71 of file SigAction.hxx.
using cosmos::SigAction::SimpleHandler = void (*)(const Signal) |
Simple signal handler for receiving only the Signal number.
Definition at line 69 of file SigAction.hxx.
|
strong |
Settings influencing the behaviour of signal::set_action()
.
Enumerator | |
---|---|
NO_CHILD_STOP | For SIGCHLD don't receive notification about child stop/resume events. |
NO_CHILD_WAIT | For SIGCHLD, don't turn children into zombies upon termination, the signal is still received though. |
NO_DEFER | Don't automatically add the signal to the thread's signal mask while the handler is executing. |
ON_STACK | Call the signal handler on an alternate signal stack provided by |
RESET_HANDLER | Upon entry to the signal handler reset the signal action to its default again. |
RESTART | Automatically restart certain system calls upon signal delivery, otherwise they return with Errno::INTERRUPTED. |
SIGINFO | The signal handler callback takes three arguments providing additional information (SigInfo). |
RESTORER | Used internally by libc, not used by applications. |
Definition at line 34 of file SigAction.hxx.
|
inline |
Creates a zero-initialized object.
Definition at line 83 of file SigAction.hxx.
|
inlineexplicit |
Leaves underlying data uninitialized.
This constructor should be used if the object will be used as an output parameter. Zero initializing it would be wasteful in this case.
Definition at line 93 of file SigAction.hxx.
|
inline |
overwrite the underlying data structure with zeroes.
Definition at line 96 of file SigAction.hxx.
|
inline |
Retrieve the current flags.
Definition at line 118 of file SigAction.hxx.
|
inline |
Returns the currently set InfoHandler, if any.
Definition at line 170 of file SigAction.hxx.
|
inline |
Returns the currently set SimpleHandler, if any.
If the object has been assigned by the kernel e.g. via signal::get_action() then a SigAction::UNKNOWN handler can be returned here, if the handler has been configured by non-libcosmos routines. In this case one can inspect low level pointer value found in raw()->sa_handler
or raw()->sa_siginfo
, respectively.
Definition at line 161 of file SigAction.hxx.
|
inline |
Access and possibly change the configured signal mask.
This signal mask will be active for the time of asynchronous signal handler execution. The signal that triggered the execution will always be blocked, unless Flags::NO_DEFER is set in Flags.
Definition at line 134 of file SigAction.hxx.
|
inline |
Access the currently set signal mask.
Definition at line 123 of file SigAction.hxx.
|
inlineprotected |
Read-write low-level access to the underlying data structure.
Definition at line 186 of file SigAction.hxx.
|
inline |
Read-only low-level access to the underlying data structure.
Definition at line 179 of file SigAction.hxx.
|
inline |
Set new flags.
Definition at line 106 of file SigAction.hxx.
void cosmos::SigAction::setHandler | ( | InfoHandler | handler | ) |
Sets a new InfoHandler style signal handler function.
The Flag::SIGINFO setting will be switched on implicitly by this call.
Definition at line 158 of file SigAction.cxx.
void cosmos::SigAction::setHandler | ( | SimpleHandler | handler | ) |
Sets a new SimpleHandler style signal handler function.
The Flag::SIGINFO setting will be switched off implicitly by this call.
Definition at line 138 of file SigAction.cxx.
|
protected |
Definition at line 166 of file SigAction.cxx.
|
static |
Special value of SimpleHandler to configure the default signal action as documented in man 7 signal
.
Definition at line 76 of file SigAction.hxx.
|
static |
Special value of SimpleHandler to ignore signals.
Definition at line 74 of file SigAction.hxx.
|
protected |
The currently configured callback.
Definition at line 198 of file SigAction.hxx.
|
protected |
Low level sigaction struct.
Definition at line 195 of file SigAction.hxx.
|
static |
Special value of SimpleHandler in case a custom non-libcosmos handler is installed.
Definition at line 78 of file SigAction.hxx.