In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/16bf540f8378cb1b57377766cfffa88116145be9?hp=a0e31c931629c9c729765aaa725b0d7297b3933c>

- Log -----------------------------------------------------------------
commit 16bf540f8378cb1b57377766cfffa88116145be9
Author: Karl Williamson <[email protected]>
Date:   Tue Mar 19 13:05:44 2013 -0600

    pod/perlfunc: Tweak new kill() wording
    
    I forgot to mention in an earlier commit message that the impetus and
    some of the text for the original change in commit
    1ac81c06ff5e50e413e5fe9197f48f1c986af8be came from Felipe Gasper.
    I'm sorry.
-----------------------------------------------------------------------

Summary of changes:
 pod/perlfunc.pod |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 504b7b3..ea27797 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -3191,7 +3191,7 @@ same as the number actually killed).
     kill 'KILL', @goners;
 
 SIGNAL may be either a signal name (a string) or a signal number.  A signal
-name may start with a C<SIG> prefix, i.e. C<FOO> and C<SIGFOO> refer to the
+name may start with a C<SIG> prefix, thus C<FOO> and C<SIGFOO> refer to the
 same signal.  The string form of SIGNAL is recommended for portability because
 the same signal may have different numbers in different operating systems.
 
@@ -3204,7 +3204,8 @@ groups instead of processes.  For example, C<kill 
'-KILL', $pgrp> and
 C<kill -9, $pgrp> will send C<SIGKILL> to the entire process group specified. 
That
 means you usually want to use positive not negative signals.
 
-If SIGNAL is either the number 0 or the string C<ZERO>, no signal is sent to
+If SIGNAL is either the number 0 or the string C<ZERO> (or C<SIGZZERO>),
+no signal is sent to
 the process, but C<kill> checks whether it's I<possible> to send a signal to it
 (that means, to be brief, that the process is owned by the same user, or we are
 the super-user).  This is useful to check that a child process is still

--
Perl5 Master Repository

Reply via email to