QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
Install a global signal continuation decider. More...
#include "signal_guard.hpp"
Public Member Functions | |
template<class U , typename std::enable_if<(std::is_constructible< T, U >::value), bool >::type = true, typename = decltype( std::declval<U>()((raised_signal_info *) 0) )> | |
signal_guard_global_decider (signalc_set guarded, U &&f, bool callfirst) | |
Constructs an instance. | |
~signal_guard_global_decider ()=default | |
signal_guard_global_decider (const signal_guard_global_decider &)=delete | |
signal_guard_global_decider (signal_guard_global_decider &&o) noexcept=default | |
signal_guard_global_decider & | operator= (const signal_guard_global_decider &)=delete |
signal_guard_global_decider & | operator= (signal_guard_global_decider &&o) noexcept |
Install a global signal continuation decider.
This is threadsafe with respect to concurrent instantiations of this type, but not reentrant i.e. modifying the global signal continuation decider registry whilst inside a global signal continuation decider is racy. Callable is called after all thread local handling is exhausted. Note that what you can safely do in the decider callable is extremely limited, only async signal safe functions may be called.
A signal_guard_install
is always instanced for every global decider, and creating and destroying these is NOT async signal safe i.e. create and destroy these ONLY outside a signal handler.
On POSIX only, a global signal continuation decider is ALWAYS installed for signalc::timer_expire
(SIGALRM
) in order to implement signal_guard_watchdog
. Be aware that if any signal_guard_watchdog
exist and their expiry times indicate that they have expired, the SIGALRM
will be consumed. You may wish to install further global signal continuation deciders using callfirst = true
if you wish to be called before any signal_guard_watchdog
processing. Note also that if no signal_guard_watchdog
expiry times have expired, then the default action for SIGALRM
is taken.
|
inline |
Constructs an instance.
guarded | The signal set for which this decider ought to be called. |
f | A callable with prototype bool(raised_signal_info *) , which must return true if execution is to resume, false if the next decider function should be called. Note that on Windows only, signalc::interrupt and signalc::process_terminate call f from some other kernel thread, and the return value is always treated as false . |
callfirst | True if this decider should be called before any other. Otherwise call order is in the order of addition. |
|
default |
|
delete |
|
defaultnoexcept |
|
delete |
|
inlinenoexcept |