| 131 | static std::optional<StopSource> signal_stop_source; |
| 132 | |
| 133 | static void signal_handler(int signum) { |
| 134 | signal_stop_source->RequestStopFromSignal(signum); |
| 135 | } |
| 136 | |
| 137 | // SIGALRM will be received once after the specified wait |
| 138 | static void SetITimer(double seconds) { |
nothing calls this directly
no test coverage detected