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
So, I admit I haven't looked at the code of process and the GHC runtime enough to be sure, but as far as I can tell withCheckedProcessCleanup calls terminateProcess to kill the child process when an exception happens, however it never waits upon the terminated process. Wouldn't this leave a zombie process hanging around until the parent program exits and init inherits the child to reap it?
The text was updated successfully, but these errors were encountered:
So, I admit I haven't looked at the code of
process
and the GHC runtime enough to be sure, but as far as I can tellwithCheckedProcessCleanup
callsterminateProcess
to kill the child process when an exception happens, however it never waits upon the terminated process. Wouldn't this leave a zombie process hanging around until the parent program exits andinit
inherits the child to reap it?The text was updated successfully, but these errors were encountered: