use POSIX qw/WNOHANG/; ## ... $SIG{ CHLD } = sub { while ( waitpid( -1, WNOHANG ) > 0 ) { ## what to do, empty here } }; ## fork down here