Child process termination timeout handler
| 66 | |
| 67 | /// Child process termination timeout handler |
| 68 | inline gboolean cmdex_on_term_timeout(gpointer data) |
| 69 | { |
| 70 | DBG_FUNCTION_ENTER_MSG; |
| 71 | auto* self = static_cast<AsyncCommandExecutor*>(data); |
| 72 | self->try_stop(hz::Signal::Terminate); |
| 73 | return FALSE; // one-time call |
| 74 | } |
| 75 | |
| 76 | |
| 77 | /// Child process kill timeout handler |