Top "Defunct" questions

Why do processes spawned by cron end up defunct?

I have some processes showing up as <defunct> in top (and ps). I've boiled things down from the …

bash background cron zombie-process defunct
How do I identify and eliminate unused CSS styles from my bloated stylesheet?

I have a legacy stylesheet that is now full of unused styles. The problem is identifying the necessary from the …

css stylesheet defunct
C: Exec/fork > Defunct processes

I'm want to create a lot of child processes using the fork > exec procedure. Many processes are ending very …

c exec fork defunct
How to cleanly kill subprocesses in python

We are using a python process to manage long running python subprocesses. Subprocesses occasionally need to be killed. The kill …

python linux zombie-process defunct
What is the cleanest way to stop a python multiprocessing worker attached to a queue in an infinite loop?

I'm implementing a producer-consumer pattern in python using multiprocessing.Pool and multiprocessing.Queue. Consumers are pre-forked processes that uses gevent …

python multiprocessing gevent defunct