Child process kill timeout handler
| 76 | |
| 77 | /// Child process kill timeout handler |
| 78 | inline gboolean cmdex_on_kill_timeout(gpointer data) |
| 79 | { |
| 80 | DBG_FUNCTION_ENTER_MSG; |
| 81 | auto* self = static_cast<AsyncCommandExecutor*>(data); |
| 82 | self->try_stop(hz::Signal::Kill); |
| 83 | return FALSE; // one-time call |
| 84 | } |
| 85 | |
| 86 | |
| 87 |