You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today subprocess gives you a way on unix to put the child in a new process group but, I think, if you terminate or kill it you will only signal the direct child. It would be nice to also expose a safe interface to killpg.
(It's not a big deal as you can do the equivalent through libc or nix but it might be nice.)
The text was updated successfully, but these errors were encountered:
sourcefrog
changed the title
would be nice to have an api to create a process group
would be nice to have an api to interrupt or kill a process group
Feb 6, 2022
Today subprocess gives you a way on unix to put the child in a new process group but, I think, if you terminate or kill it you will only signal the direct child. It would be nice to also expose a safe interface to
killpg
.(It's not a big deal as you can do the equivalent through
libc
ornix
but it might be nice.)The text was updated successfully, but these errors were encountered: