libcosmos
Linux C++ System Programming Library
|
Additional data found in SigInfo with SIGCHILD. More...
#include <SigInfo.hxx>
Public Types | |
enum class | Event : int { INVALID = -1 , EXITED = CLD_EXITED , KILLED = CLD_KILLED , DUMPED = CLD_DUMPED , TRAPPED = CLD_TRAPPED , STOPPED = CLD_STOPPED , CONTINUED = CLD_CONTINUED } |
Types of SIGCHLD events that can occur. More... | |
Public Member Functions | |
bool | exited () const |
Returns whether the child exited. | |
bool | killed () const |
Returns whether the child was killed by a signal. | |
bool | dumped () const |
Returns whether the child dumped core due to a signal. | |
bool | trapped () const |
Returns true if the child entered a tracing trap. | |
bool | continued () const |
Returns whether the child continued due to a signal. | |
bool | stopped () const |
Returns whether the child stopped. | |
bool | exitedSuccessfully () const |
Returns whether the child exited and had an exit status of 0. | |
bool | signaled () const |
Returns whether the child received a signal. | |
bool | valid () const |
Returns whether the structure contains valid information. | |
void | reset () |
Public Attributes | |
Event | event |
The kind of child process event that occurred. | |
ProcessCtx | child |
the PID and its real user ID the signal is about. | |
std::optional< ExitStatus > | status |
Contains the process's exit status, if applicable. | |
std::optional< Signal > | signal |
Contains the signal number that caused the child process to change state. | |
std::optional< ClockTicks > | user_time |
The CPU time the child spent in user space. | |
std::optional< ClockTicks > | system_time |
The CPU time the child spent in kernel space. | |
Additional data found in SigInfo with SIGCHILD.
Definition at line 321 of file SigInfo.hxx.
|
strong |
Types of SIGCHLD events that can occur.
Definition at line 325 of file SigInfo.hxx.
|
inline |
|
inline |
|
inline |
|
inline |
Returns whether the child exited and had an exit status of 0.
Definition at line 356 of file SigInfo.hxx.
|
inline |
|
inline |
Definition at line 373 of file SigInfo.hxx.
|
inline |
Returns whether the child received a signal.
Definition at line 361 of file SigInfo.hxx.
|
inline |
|
inline |
|
inline |
Returns whether the structure contains valid information.
Definition at line 369 of file SigInfo.hxx.
ProcessCtx cosmos::SigInfo::ChildData::child |
the PID and its real user ID the signal is about.
Definition at line 385 of file SigInfo.hxx.
Event cosmos::SigInfo::ChildData::event |
The kind of child process event that occurred.
Definition at line 383 of file SigInfo.hxx.
std::optional<Signal> cosmos::SigInfo::ChildData::signal |
Contains the signal number that caused the child process to change state.
This signal number is only available for events other than Event::EXITED. Otherwise status
is available instead.
Definition at line 399 of file SigInfo.hxx.
std::optional<ExitStatus> cosmos::SigInfo::ChildData::status |
Contains the process's exit status, if applicable.
An exit status is only available for Event::EXITED. In the other cases a signal
is available instead.
Definition at line 392 of file SigInfo.hxx.
std::optional<ClockTicks> cosmos::SigInfo::ChildData::system_time |
The CPU time the child spent in kernel space.
This does not include the time of waited-for children of the child.
This data is not available from the cosmos::proc::wait() family of functions.
Definition at line 418 of file SigInfo.hxx.
std::optional<ClockTicks> cosmos::SigInfo::ChildData::user_time |
The CPU time the child spent in user space.
This does not include the time of waited-for children of the child.
This data is not available from the cosmos::proc::wait() family of functions.
Definition at line 409 of file SigInfo.hxx.