Subject: | “perldoc autodie” doesn’t mention kill() |
Date: | Thu, 17 Jul 2014 13:51:57 -0500 |
To: | bug-autodie [...] rt.cpan.org |
From: | Felipe Gasper <felipe [...] felipegasper.com> |
perldoc autodie
^^ The above command doesn’t mention kill(), though autodie clearly
affects it:
======================
Show quoted text
> perl -Mautodie -e'print $autodie::VERSION'
2.23
Show quoted text > perl -Mautodie -e'(my $pid = fork) or exit; waitpid $pid, 0; kill
"ZERO", $pid';
Can't kill('ZERO', '13431'): No such process at -e line 1
Show quoted text > perl -e'(my $pid = fork) or exit; waitpid $pid, 0; kill "ZERO", $pid';
Show quoted text >
======================
Felipe Gasper
cPanel, Inc.