The defunct tag has no wiki summary.
1
vote
1answer
91 views
pcntl_fork() results in defunct parent process
So, I have this PHP daemon worker that listens to IPC messages.
Weird thing is that the parent process (result from pcntl_fork) leaves a [php] < defunct> process untill the child process is done ...
1
vote
0answers
65 views
Cause of CGI process being defunct'ed
I would like to check whether it's possible to trace what time a CGI program gets invoked or ended through any apache logs.
If I am using a javascript to reload a CGI program every 2 seconds and in ...
-1
votes
1answer
196 views
Does Apache Velocity project have future or is it defunct? [closed]
I need to choose a templating engine for my project. At first it seemed to be a no-brainer to pick Apache Velocity. But then I noticed that the last release was over 18 months ago. Only a handful of ...
2
votes
2answers
852 views
Can a child process go <defunct> without its parent process dying?
kill - does it kill the process right away?
I found my answer and I set up a signal handler for SIGCHLD and introduced wait in that handler. That way, whenever parent process kills a child process, ...
4
votes
3answers
228 views
kill - does it kill the process right away?
what does kill exactly do?
I have a parent process which is creating 100 (as an example) child processes one after another. At the end of any child's job, I kill the child with kill(pid_of_child, ...
4
votes
2answers
2k views
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 fast (in less than two minutes, some even earlier).
My first problem is, I put the spawn ...
1
vote
3answers
53 views
Why generate an Order database record before the Customer finishes placing the Order?
I'm working with an ordering system and trying to understand first of all why it was designed the way it was.
One of the things I can't understand is why the system creates a unique Order record for ...
9
votes
4answers
5k views
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 unnecessary. Are there any tools to help with this?
6
votes
1answer
532 views
init never reaping zombie/defunct processes
On my Fedora Core 9 webserver with kernel 2.6.18, init isn't reaping zombie processes. This would be bearable if it wasn't for the process table eventually reaching an upper limit where no new ...
8
votes
5answers
8k views
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 real scripts and programs.
In my crontab:
* * * * * /tmp/launcher.sh /tmp/tester.sh
The ...