libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::signal::Stack Class Reference

Data structure used for defining an alternate signal stack. More...

#include <signal.hxx>

Public Types

enum class  Flag : int { ON_STACK = SS_ONSTACK , DISABLE = SS_DISABLE , AUTO_DISARM = 1 << 31 }
 Settings for alternate stack setup. More...
 
using Flags = BitMask<Flag>
 

Public Member Functions

 Stack (const no_init_t)
 Leaves underlying data uninitialized.
 
void setFlags (const Flags flags)
 
Flags getFlags () const
 
void setBase (void *base)
 Sets the base pointer for the alternate signal stack.
 
void * getBase () const
 
void setSize (const size_t size)
 Sets the size of the alternate signal stack found at getBase().
 
size_t getSize () const
 
void clear ()
 
auto raw ()
 
auto raw () const
 

Static Public Attributes

static size_t MIN_SIZE = MINSIGSTKSZ
 Minimum size an alternate signal stack needs to have.
 

Protected Attributes

stack_t m_raw
 

Detailed Description

Data structure used for defining an alternate signal stack.

Definition at line 314 of file signal.hxx.

Member Typedef Documentation

◆ Flags

Definition at line 325 of file signal.hxx.

Member Enumeration Documentation

◆ Flag

enum class cosmos::signal::Stack::Flag : int
strong

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 {
319 ON_STACK = SS_ONSTACK,
320 DISABLE = SS_DISABLE,
321 /* SS_AUTODISARM not yet in userspace headers? */
322 AUTO_DISARM = 1 << 31,
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).

Constructor & Destructor Documentation

◆ Stack() [1/2]

cosmos::signal::Stack::Stack ( )
inline

Definition at line 332 of file signal.hxx.

332 {
333 clear();
334 }

◆ Stack() [2/2]

cosmos::signal::Stack::Stack ( const no_init_t )
inline

Leaves underlying data uninitialized.

Definition at line 337 of file signal.hxx.

337{}

Member Function Documentation

◆ clear()

void cosmos::signal::Stack::clear ( )
inline

Definition at line 365 of file signal.hxx.

365 {
366 zero_object(m_raw);
367 }
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23

◆ 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 }

Member Data Documentation

◆ m_raw

stack_t cosmos::signal::Stack::m_raw
protected

Definition at line 379 of file signal.hxx.

◆ 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: