Zombie Process - Examples

Examples

Synchronously waiting for the specific child processes in a (specific) order may leave zombies present longer than the above-mentioned "short period of time". It is not necessarily a program bug.

#include #include #include int main(void) { pid_t pids; int i; for (i = 9; i >= 0; --i) { pids = fork; if (pids == 0) { sleep(i+1); _exit(0); } } for (i = 9; i >= 0; --i) waitpid(pids, NULL, 0); return 0; }

Read more about this topic:  Zombie Process

Famous quotes containing the word examples:

    There are many examples of women that have excelled in learning, and even in war, but this is no reason we should bring ‘em all up to Latin and Greek or else military discipline, instead of needle-work and housewifry.
    Bernard Mandeville (1670–1733)

    In the examples that I here bring in of what I have [read], heard, done or said, I have refrained from daring to alter even the smallest and most indifferent circumstances. My conscience falsifies not an iota; for my knowledge I cannot answer.
    Michel de Montaigne (1533–1592)

    Histories are more full of examples of the fidelity of dogs than of friends.
    Alexander Pope (1688–1744)