projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3012784
)
perlipc thinko by John P. Linderman.
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Tue, 12 Aug 2003 20:27:41 +0000
(20:27 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Tue, 12 Aug 2003 20:27:41 +0000
(20:27 +0000)
p4raw-id: //depot/perl@20668
pod/perlipc.pod
patch
|
blob
|
history
diff --git
a/pod/perlipc.pod
b/pod/perlipc.pod
index
8412bfd
..
a75ccb5
100644
(file)
--- a/
pod/perlipc.pod
+++ b/
pod/perlipc.pod
@@
-105,9
+105,9
@@
or has changed its UID.
When directed at a process whose UID is not identical to that
of the sending process, signal number zero may fail because
you lack permission to send the signal, even though the process is alive.
-You may be able to determine the cause of failure using C<
$
!>.
+You may be able to determine the cause of failure using C<
%
!>.
- unless (kill 0 => $pid or $!
== $!
{EPERM}) {
+ unless (kill 0 => $pid or $!{EPERM}) {
warn "$pid looks dead";
}