libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SigInfo::ChildData Struct Reference

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< ExitStatusstatus
 Contains the process's exit status, if applicable.
 
std::optional< Signalsignal
 Contains the signal number that caused the child process to change state.
 
std::optional< ClockTicksuser_time
 The CPU time the child spent in user space.
 
std::optional< ClockTickssystem_time
 The CPU time the child spent in kernel space.
 

Detailed Description

Additional data found in SigInfo with SIGCHILD.

Definition at line 321 of file SigInfo.hxx.

Member Enumeration Documentation

◆ Event

enum class cosmos::SigInfo::ChildData::Event : int
strong

Types of SIGCHLD events that can occur.

Enumerator
EXITED 

Child has exited.

KILLED 

Child was killed.

DUMPED 

Child terminated abnormally due to a signal, dumping core.

TRAPPED 

Traced child has trapped.

STOPPED 

Child has stopped due to a signal.

CONTINUED 

Stopped child has continued.

Definition at line 325 of file SigInfo.hxx.

325 : int {
326 INVALID = -1,
327 EXITED = CLD_EXITED,
328 KILLED = CLD_KILLED,
329 DUMPED = CLD_DUMPED,
330 TRAPPED = CLD_TRAPPED,
331 STOPPED = CLD_STOPPED,
332 CONTINUED = CLD_CONTINUED
333 };
@ STOPPED
Child has stopped due to a signal.
@ TRAPPED
Traced child has trapped.
@ CONTINUED
Stopped child has continued.
@ DUMPED
Child terminated abnormally due to a signal, dumping core.

Member Function Documentation

◆ continued()

bool cosmos::SigInfo::ChildData::continued ( ) const
inline

Returns whether the child continued due to a signal.

Definition at line 350 of file SigInfo.hxx.

350{ return event == Event::CONTINUED; }

◆ dumped()

bool cosmos::SigInfo::ChildData::dumped ( ) const
inline

Returns whether the child dumped core due to a signal.

Definition at line 344 of file SigInfo.hxx.

344{ return event == Event::DUMPED; }

◆ exited()

bool cosmos::SigInfo::ChildData::exited ( ) const
inline

Returns whether the child exited.

Definition at line 338 of file SigInfo.hxx.

338{ return event == Event::EXITED; }

◆ exitedSuccessfully()

bool cosmos::SigInfo::ChildData::exitedSuccessfully ( ) const
inline

Returns whether the child exited and had an exit status of 0.

Definition at line 356 of file SigInfo.hxx.

356 {
357 return exited() && *status == ExitStatus::SUCCESS;
358 }
std::optional< ExitStatus > status
Contains the process's exit status, if applicable.
Definition SigInfo.hxx:392
bool exited() const
Returns whether the child exited.
Definition SigInfo.hxx:338

◆ killed()

bool cosmos::SigInfo::ChildData::killed ( ) const
inline

Returns whether the child was killed by a signal.

Definition at line 341 of file SigInfo.hxx.

341{ return event == Event::KILLED; }

◆ reset()

void cosmos::SigInfo::ChildData::reset ( )
inline

Definition at line 373 of file SigInfo.hxx.

373 {
374 event = Event::INVALID;
375 child.pid = ProcessID::INVALID;
376 status = std::nullopt;
377 signal = std::nullopt;
378 }
std::optional< Signal > signal
Contains the signal number that caused the child process to change state.
Definition SigInfo.hxx:399
ProcessCtx child
the PID and its real user ID the signal is about.
Definition SigInfo.hxx:385
ProcessID pid
PID of the process.
Definition SigInfo.hxx:106

◆ signaled()

bool cosmos::SigInfo::ChildData::signaled ( ) const
inline

Returns whether the child received a signal.

Definition at line 361 of file SigInfo.hxx.

361 {
362 return event == Event::KILLED ||
363 event == Event::DUMPED ||
364 event == Event::STOPPED ||
365 event == Event::CONTINUED;
366 }

◆ stopped()

bool cosmos::SigInfo::ChildData::stopped ( ) const
inline

Returns whether the child stopped.

Definition at line 353 of file SigInfo.hxx.

353{ return event == Event::STOPPED; }

◆ trapped()

bool cosmos::SigInfo::ChildData::trapped ( ) const
inline

Returns true if the child entered a tracing trap.

Definition at line 347 of file SigInfo.hxx.

347{ return event == Event::TRAPPED; }

◆ valid()

bool cosmos::SigInfo::ChildData::valid ( ) const
inline

Returns whether the structure contains valid information.

Definition at line 369 of file SigInfo.hxx.

369 {
370 return event != Event::INVALID;
371 }

Member Data Documentation

◆ child

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

Event cosmos::SigInfo::ChildData::event

The kind of child process event that occurred.

Definition at line 383 of file SigInfo.hxx.

◆ signal

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.

◆ status

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.

◆ system_time

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.

◆ user_time

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.


The documentation for this struct was generated from the following file: