| 205 | } |
| 206 | |
| 207 | static void set_worker_signal_handlers() { |
| 208 | set_signal_handler(SIGSEGV, &handler_SIGSEGV, nullptr); |
| 209 | set_signal_handler(SIGTERM, &handler_SIGTERM, nullptr); |
| 210 | set_signal_handler(SIGFPE, &handler_SIGFPE, nullptr); |
| 211 | } |
| 212 | |
| 213 | static std::unordered_map<int64_t, std::set<pid_t>> worker_pids = {}; |
| 214 |
no test coverage detected