libcosmos
Linux C++ System Programming Library
|
SigInfo style data structure returned by SignalFD::readEvent(). More...
#include <SignalFD.hxx>
Public Types | |
using | Source = SigInfo::Source |
using | ProcessCtx = SigInfo::ProcessCtx |
using | UserSigData = SigInfo::UserSigData |
using | QueueSigData = SigInfo::QueueSigData |
using | MsgQueueData = SigInfo::MsgQueueData |
using | TimerData = SigInfo::TimerData |
using | ChildData = SigInfo::ChildData |
using | SysData = SigInfo::SysData |
using | PollData = SigInfo::PollData |
Public Member Functions | |
Info () | |
Creates a zero-initialized Info wrapper. | |
Info (const no_init_t) | |
Leaves the underlying data structure uninitialized. | |
const signalfd_siginfo * | raw () const |
signalfd_siginfo * | raw () |
Signal | sigNr () const |
Returns the signal number that occurred. | |
Source | source () const |
Returns the source of the signal. | |
bool | isTrustedSource () const |
Returns whether the signal was sent from a trusted source (i.e. the kernel). | |
std::optional< const UserSigData > | userSigData () const |
Returns the Source::USER specific data. | |
std::optional< const QueueSigData > | queueSigData () const |
Returns the Source::QUEUE specific data. | |
std::optional< const MsgQueueData > | msgQueueData () const |
Returns the Source::MSGQ specific data. | |
std::optional< const TimerData > | timerData () const |
Returns the Source::TIMER specific data. | |
std::optional< const SysData > | sysData () const |
Returns signal::BAD_SYS specific data. | |
std::optional< const ChildData > | childData () const |
Returns signal::CHILD specific data. | |
std::optional< const PollData > | pollData () const |
Returns signal::POLL specific data. | |
void | clear () |
Zeroes out the low level siginfo_t data structure. | |
Protected Member Functions | |
Errno | error () const |
Returns an error code that is generally unused on Linux (always 0). | |
ProcessCtx | procCtx () const |
ProcessID | pid () const |
UserID | uid () const |
Protected Attributes | |
signalfd_siginfo | m_raw |
SigInfo style data structure returned by SignalFD::readEvent().
This is mostly the same as SigInfo, but tailored towards SignalFD. The underlying data structures differ too much to merge them into one on libcosmos level.
One difference between this structure and SigInfo is that SignalFDs cannot be used to catch fault signals (these can only be caught by SigAction signal handlers). Thus the fault signal part is missing from this structure.
Definition at line 116 of file SignalFD.hxx.
Definition at line 127 of file SignalFD.hxx.
Definition at line 125 of file SignalFD.hxx.
Definition at line 129 of file SignalFD.hxx.
Definition at line 122 of file SignalFD.hxx.
Definition at line 124 of file SignalFD.hxx.
Definition at line 121 of file SignalFD.hxx.
Definition at line 128 of file SignalFD.hxx.
Definition at line 126 of file SignalFD.hxx.
Definition at line 123 of file SignalFD.hxx.
|
inline |
Creates a zero-initialized Info wrapper.
Definition at line 134 of file SignalFD.hxx.
|
inline |
Leaves the underlying data structure uninitialized.
When Info is used as an output parameter only (the typical case) then you can invoke this constructor to avoid unnecessary zero-initialization.
Definition at line 144 of file SignalFD.hxx.
std::optional< const Info::ChildData > cosmos::Info::childData | ( | ) | const |
Returns signal::CHILD specific data.
This data is only available for sigNr() == signal::CHILD
.
Definition at line 142 of file SignalFD.cxx.
|
inline |
Zeroes out the low level siginfo_t data structure.
Definition at line 205 of file SignalFD.hxx.
|
inlineprotected |
Returns an error code that is generally unused on Linux (always 0).
An exception is the case of SIGSYS generated by seccomp(2) filters.
Definition at line 215 of file SignalFD.hxx.
|
inline |
Returns whether the signal was sent from a trusted source (i.e. the kernel).
Definition at line 170 of file SignalFD.hxx.
std::optional< const Info::MsgQueueData > cosmos::Info::msgQueueData | ( | ) | const |
Returns the Source::MSGQ specific data.
Definition at line 104 of file SignalFD.cxx.
|
inlineprotected |
Definition at line 223 of file SignalFD.hxx.
std::optional< const Info::PollData > cosmos::Info::pollData | ( | ) | const |
Returns signal::POLL specific data.
This data is only available for sigNr() == signal::POLL
.
Definition at line 161 of file SignalFD.cxx.
|
inlineprotected |
Definition at line 219 of file SignalFD.hxx.
std::optional< const Info::QueueSigData > cosmos::Info::queueSigData | ( | ) | const |
Returns the Source::QUEUE specific data.
Definition at line 89 of file SignalFD.cxx.
|
inline |
Definition at line 150 of file SignalFD.hxx.
|
inline |
Definition at line 146 of file SignalFD.hxx.
|
inline |
Returns the signal number that occurred.
Definition at line 155 of file SignalFD.hxx.
Info::Source cosmos::Info::source | ( | ) | const |
Returns the source of the signal.
Definition at line 65 of file SignalFD.cxx.
std::optional< const Info::SysData > cosmos::Info::sysData | ( | ) | const |
Returns signal::BAD_SYS specific data.
This data is only available for sigNr() == signal::BAD_SYS
.
Definition at line 127 of file SignalFD.cxx.
std::optional< const Info::TimerData > cosmos::Info::timerData | ( | ) | const |
Returns the Source::TIMER specific data.
Definition at line 114 of file SignalFD.cxx.
|
inlineprotected |
Definition at line 228 of file SignalFD.hxx.
std::optional< const Info::UserSigData > cosmos::Info::userSigData | ( | ) | const |
Returns the Source::USER specific data.
Definition at line 81 of file SignalFD.cxx.
|
protected |
Definition at line 234 of file SignalFD.hxx.