Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
283 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 ...
3
votes
3answers
452 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?
3
votes
4answers
3k 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 ...
2
votes
2answers
80 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, ...
2
votes
3answers
97 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, ...
1
vote
3answers
39 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 ...
1
vote
0answers
290 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 ...