Call an optional specified routine after a period of time, possibly on another thread. Async signal safe.
More...
template<class T>
class quickcpplib::_xxx::signal_guard::signal_guard_watchdog< T >
Call an optional specified routine after a period of time, possibly on another thread. Async signal safe.
In your signal handler, you may have no choice but to execute async signal unsafe code e.g. you absolutely must call malloc()
because third party code does so and there is no way to not call that third party code. This can very often lead to hangs, whether due to infinite loops or getting deadlocked by locking an already locked mutex.
This facility provides the ability to set a watchdog timer which will either call your specified routine or the default routine after a period of time after construction, unless it is released or destructed first. Your routine will be called via an async signal (SIGALRM
) if on POSIX, or from a separate thread if on Windows. Therefore, if on Windows, a kernel thread will be launched on construction, and killed on destruction. On POSIX, a global signal continuation decider is ALWAYS installed at process init for signalc::timer_expire
(SIGALRM
) in order to implement signal_guard_watchdog
, this is a filtering decider which only matches signal_guard_watchdog
whose timers have expired, otherwise it passes on the signal to other handlers.
If you don't specify a routine, the default routine is terminate_process_immediately()
which performs a fast fail process termination.