In perl.git, the branch maint-5.18 has been updated <http://perl5.git.perl.org/perl.git/commitdiff/0e3a33a5591638a228b7c142238aa17051bcabe5?hp=c14aac8348c6efdba19f438a181cea7ab24ab109>
- Log ----------------------------------------------------------------- commit 0e3a33a5591638a228b7c142238aa17051bcabe5 Author: Doug Bell <[email protected]> Date: Sun Aug 31 03:02:56 2014 -0500 sig() should be kill() There is no sig() function, and the block of text has similar language to a previous block which uses kill(). For: RT #122662 (cherry picked from commit 9589aa831c3533d85bf7042e049cbe02095df9d3) ----------------------------------------------------------------------- Summary of changes: pod/perlfork.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/perlfork.pod b/pod/perlfork.pod index 7729444..fed58f3 100644 --- a/pod/perlfork.pod +++ b/pod/perlfork.pod @@ -152,7 +152,7 @@ pseudo-child created by it that is also a pseudo-parent will only exit after their pseudo-children have exited. Starting with Perl 5.14 a parent will not wait() automatically -for any child that has been signalled with C<sig('TERM', ...)> +for any child that has been signalled with C<kill('TERM', ...)> to avoid a deadlock in case the child is blocking on I/O and never receives the signal. -- Perl5 Master Repository
