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:

    No rules exist, and examples are simply life-savers answering the appeals of rules making vain attempts to exist.
    André Breton (1896–1966)

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

    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)