Getting rid of zombies in perl

146 Views Asked by At

I have written a server in perl, waiting for tcp connections. Every time the server receives one, it forks a new child in charge of it and continues listening for another connection.( And so it cannot wait for the SIGCHILD. ) The child does what it is supposed to do and exits, but continues to "live" as a zombie. What is the solution please ?

1

There are 1 best solutions below

1
On

Set $SIG{CHLD} = 'IGNORE'; to have the system handle them for you automatically.

Or set $SIG{CHLD}to a subroutine and waitpid:

use POSIX qw( WNOHANG );

$SIG{CHLD} = sub {
    while( ( my $child = waitpid( -1, WNOHANG ) ) > 0 ) {
        print "SIGNAL CHLD $child\n";
    }
};

If you really want to understand how it works (of course you do! :), you should read perlipc

There is also more info here on Stack Overflow