Zulip Chat Archive
Stream: lean4
Topic: kill Process.Child
James Gallicchio (Mar 01 2023 at 05:34):
hey, does anyone know if there's a way to kill a child process in core? :thinking: I don't see anything in the API, but the implementation in process.cpp
does keep track of the PID, so do we think I can safely add a Child.kill
function implemented via C kill()
?
Sebastian Ullrich (Mar 01 2023 at 12:00):
Sounds reasonable, see also https://doc.rust-lang.org/src/std/process.rs.html#1859-1861
Last updated: Dec 20 2023 at 11:08 UTC