QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::signal_guard::signal_guard_install Class Reference

On platforms where it is necessary (POSIX), installs, and potentially enables, the global signal handlers for the signals specified by guarded. Each signal installed is threadsafe reference counted, so this is safe to call from multiple threads or instantiate multiple times. It is also guaranteed safe to call from within static data init or deinit, so a very common use case is simply to place an instance into global static data. This ensures that dynamically loaded and unloaded shared objects compose signal guards appropriately. More...

#include "signal_guard.hpp"

Public Member Functions

SIGNALGUARD_MEMFUNC_DECL signal_guard_install (signalc_set guarded)
 
SIGNALGUARD_MEMFUNC_DECL ~signal_guard_install ()
 
 signal_guard_install (const signal_guard_install &)=delete
 
 signal_guard_install (signal_guard_install &&o) noexcept
 
signal_guard_installoperator= (const signal_guard_install &)=delete
 
signal_guard_installoperator= (signal_guard_install &&o) noexcept
 

Detailed Description

On platforms where it is necessary (POSIX), installs, and potentially enables, the global signal handlers for the signals specified by guarded. Each signal installed is threadsafe reference counted, so this is safe to call from multiple threads or instantiate multiple times. It is also guaranteed safe to call from within static data init or deinit, so a very common use case is simply to place an instance into global static data. This ensures that dynamically loaded and unloaded shared objects compose signal guards appropriately.

On platforms with better than POSIX global signal support, this class does nothing.

POSIX only

Any existing global signal handlers are replaced with a filtering signal handler, which checks if the current kernel thread has installed a signal guard, and if so executes the guard. If no signal guard has been installed for the current kernel thread, global signal continuation handlers are executed. If none claims the signal, the previously installed signal handler is called.

After the new signal handlers have been installed, the guarded signals are globally enabled for all threads of execution. Be aware that the handlers are installed with SA_NODEFER to avoid the need to perform an expensive syscall when a signal is handled. However this may also produce surprise e.g. infinite loops.

Warning
This class is threadsafe with respect to other concurrent executions of itself, but is NOT threadsafe with respect to other code modifying the global signal handlers. It is NOT async signal safe.

Constructor & Destructor Documentation

◆ signal_guard_install() [1/3]

SIGNALGUARD_MEMFUNC_DECL quickcpplib::_xxx::signal_guard::signal_guard_install::signal_guard_install ( signalc_set  guarded)
explicit

◆ ~signal_guard_install()

SIGNALGUARD_MEMFUNC_DECL quickcpplib::_xxx::signal_guard::signal_guard_install::~signal_guard_install ( )

◆ signal_guard_install() [2/3]

quickcpplib::_xxx::signal_guard::signal_guard_install::signal_guard_install ( const signal_guard_install )
delete

◆ signal_guard_install() [3/3]

quickcpplib::_xxx::signal_guard::signal_guard_install::signal_guard_install ( signal_guard_install &&  o)
inlinenoexcept
432 : _guarded(o._guarded)
433 {
434 o._guarded = signalc_set::none;
435 }

Member Function Documentation

◆ operator=() [1/2]

signal_guard_install & quickcpplib::_xxx::signal_guard::signal_guard_install::operator= ( const signal_guard_install )
delete

◆ operator=() [2/2]

signal_guard_install & quickcpplib::_xxx::signal_guard::signal_guard_install::operator= ( signal_guard_install &&  o)
inlinenoexcept
438 {
439 this->~signal_guard_install();
440 new(this) signal_guard_install(static_cast<signal_guard_install &&>(o));
441 return *this;
442 }
SIGNALGUARD_MEMFUNC_DECL signal_guard_install(signalc_set guarded)

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