In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/12733a0391a05c17c34b642aa1694e0d482f3df6?hp=4c0e595c606032a1e1c0a922399a1e7bd2358ca9>
- Log ----------------------------------------------------------------- commit 12733a0391a05c17c34b642aa1694e0d482f3df6 Author: David Mitchell <[email protected]> Date: Mon Mar 17 16:44:48 2014 +0000 perlfunc: clarify kill()'s return value ----------------------------------------------------------------------- Summary of changes: pod/perlfunc.pod | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 065e2e4..8f4df97 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -3217,9 +3217,10 @@ X<kill> X<signal> =for Pod::Functions send a signal to a process or process group -Sends a signal to a list of processes. Returns the number of -processes successfully signaled (which is not necessarily the -same as the number actually killed). +Sends a signal to a list of processes. Returns the number of arguments +that were successfully used to signal (which is not necessarily the same +as the number of processes actually killed, e.g. where a process group is +killed). $cnt = kill 'HUP', $child1, $child2; kill 'KILL', @goners; -- Perl5 Master Repository
