in reply to No child processes

local $SIG{CHLD} = sub { local ($!, $?); while (waitpid(-1, WNOHANG) > 0) {} };
seems to fix this issue