13#include <cosmos/dso_export.h>
14#include <cosmos/error/errno.hxx>
15#include <cosmos/types.hxx>
33enum class ProcessGroupID : pid_t {
45 SUCCESS = EXIT_SUCCESS,
46 FAILURE = EXIT_FAILURE,
59 SYS_TRAP = SIGTRAP | 0x80,
71 STACK_FAULT = SIGSTKFLT,
77 TERM_OUTPUT = SIGTTOU,
79 CPU_EXCEEDED = SIGXCPU,
80 FS_EXCEEDED = SIGXFSZ,
81 VIRTUAL_ALARM = SIGVTALRM,
83 WIN_CHANGED = SIGWINCH,
104 constexpr Signal& operator=(
const Signal &o) { m_sig = o.
m_sig;
return *
this; }
106 bool operator==(
const Signal &o)
const {
return m_sig == o.m_sig; }
107 bool operator!=(
const Signal &o)
const {
return !(*
this == o); }
109 bool operator<(
const Signal &o)
const {
return m_sig < o.m_sig; }
110 bool operator<=(
const Signal &o)
const {
return m_sig <= o.m_sig; }
111 bool operator>(
const Signal &o)
const {
return m_sig > o.m_sig; }
112 bool operator>=(
const Signal &o)
const {
return m_sig >= o.m_sig; }
118 std::string name()
const;
121 return m_sig != SignalNr::NONE;
Represents a POSIX signal number and offers a minimal API around it.
constexpr Signal(const SignalNr sig)
Creates a Signal object for the given primitive signal number.
SignalNr raw() const
Returns the primitive signal number stored in this object.
SignalNr m_sig
The raw signal number.
COSMOS_API std::ostream & operator<<(std::ostream &o, const cosmos::FileMode mode)
Outputs a friendly version of the FileMode information onto the stream.
@ SELF
In a number of system calls zero refers to the calling thread.
ExitStatus
Represents an exit status code from a child process.
SignalNr
A primitive signal number specification.