Data structure used for defining an alternate signal stack.
More...
#include <signal.hxx>
|
static size_t | MIN_SIZE = MINSIGSTKSZ |
| Minimum size an alternate signal stack needs to have.
|
|
Data structure used for defining an alternate signal stack.
Definition at line 314 of file signal.hxx.
◆ Flags
◆ Flag
Settings for alternate stack setup.
Enumerator |
---|
ON_STACK | the thread is currently executing on the alternate signal stack (output flag only).
|
DISABLE | the alternate signal stack is currently disabled (output flag only).
|
AUTO_DISARM | clear the alternate signal stack settings on entry to the signal handler.
|
Definition at line 318 of file signal.hxx.
318 : int {
321
323 };
@ ON_STACK
the thread is currently executing on the alternate signal stack (output flag only).
@ AUTO_DISARM
clear the alternate signal stack settings on entry to the signal handler.
@ DISABLE
the alternate signal stack is currently disabled (output flag only).
◆ Stack() [1/2]
cosmos::signal::Stack::Stack |
( |
| ) |
|
|
inline |
◆ Stack() [2/2]
cosmos::signal::Stack::Stack |
( |
const no_init_t | | ) |
|
|
inline |
Leaves underlying data uninitialized.
Definition at line 337 of file signal.hxx.
◆ clear()
void cosmos::signal::Stack::clear |
( |
| ) |
|
|
inline |
Definition at line 365 of file signal.hxx.
365 {
367 }
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
◆ getBase()
void * cosmos::signal::Stack::getBase |
( |
| ) |
const |
|
inline |
Definition at line 352 of file signal.hxx.
352 {
353 return m_raw.ss_sp;
354 }
◆ getFlags()
Flags cosmos::signal::Stack::getFlags |
( |
| ) |
const |
|
inline |
Definition at line 343 of file signal.hxx.
343 {
344 return Flags{m_raw.ss_flags};
345 }
◆ getSize()
size_t cosmos::signal::Stack::getSize |
( |
| ) |
const |
|
inline |
Definition at line 361 of file signal.hxx.
361 {
362 return m_raw.ss_size;
363 }
◆ raw() [1/2]
auto cosmos::signal::Stack::raw |
( |
| ) |
|
|
inline |
Definition at line 369 of file signal.hxx.
369 {
370 return &m_raw;
371 }
◆ raw() [2/2]
auto cosmos::signal::Stack::raw |
( |
| ) |
const |
|
inline |
Definition at line 373 of file signal.hxx.
373 {
374 return &m_raw;
375 }
◆ setBase()
void cosmos::signal::Stack::setBase |
( |
void * | base | ) |
|
|
inline |
Sets the base pointer for the alternate signal stack.
Definition at line 348 of file signal.hxx.
348 {
349 m_raw.ss_sp = base;
350 }
◆ setFlags()
void cosmos::signal::Stack::setFlags |
( |
const Flags | flags | ) |
|
|
inline |
Definition at line 339 of file signal.hxx.
339 {
340 m_raw.ss_flags = flags.raw();
341 }
◆ setSize()
void cosmos::signal::Stack::setSize |
( |
const size_t | size | ) |
|
|
inline |
Sets the size of the alternate signal stack found at getBase().
Definition at line 357 of file signal.hxx.
357 {
358 m_raw.ss_size = size;
359 }
◆ m_raw
stack_t cosmos::signal::Stack::m_raw |
|
protected |
◆ MIN_SIZE
size_t cosmos::signal::Stack::MIN_SIZE = MINSIGSTKSZ |
|
static |
Minimum size an alternate signal stack needs to have.
Definition at line 328 of file signal.hxx.
The documentation for this class was generated from the following files: