Open aueelis opened 9 years ago
Could you elaborate? What do you mean, does the output freeze there? Does Pkg.status()
work?
Zombie process?
When I switch to htop
(or a similar program) there is a child process julia
in zombie (Z) state.
Everything else seems to work as expected.
Can't replicate on ubuntu 15 with either latest stable Julia or master.
I can still replicate with latest stable from julialang.org/downloads on Arch and Kubuntu 15.10.
Please reopen if this is still happening.
Our vfork implementation (basically a clone of posix_spawn
) fails to cleanup zombies created when process creation fails. (I thought I had self-assigned some issue about this, but can't find it, so reopening this one – thanks for the bump 🙂)
I also reproduced this with Julia 1.6.2 on ubuntu 20.04.
julia> versioninfo(verbose=true)
While keeping julia running, I run top
in a second terminal and see two processes named julia, one of them with status Z. As soon as the julia session was closed, the zombie process also disappeared.
While running
versioninfo(true)
a zombie is produced.