Paul Liétar
Results
82
comments of
Paul Liétar
For some extra context, this is the code in the R interpreter that registers the SIGINT signal: https://github.com/wch/r-source/blob/225050624227afe43a0b1ae2ec597cad10eac874/src/main/main.c#L695-L699 There's no equivalent code for SIGTERM, so the process just quits abruptly...
> What sort of cleanup are we trying to do that we can't currently do with the aggressive kill that is currently used? The context here was the orderly.runner, which...