summaryrefslogtreecommitdiff
path: root/pod/perlipc.pod
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2009-01-13 13:36:20 +0100
committerAbigail <abigail@abigail.be>2009-01-13 13:36:20 +0100
commitabf724c9ab24576383f61f07468412ec5ceac8cb (patch)
treeec3609dee31d2f3d8c2d5d1077575afdf5055c20 /pod/perlipc.pod
parentdf27866545771c254ff7fc71eb20ecc427c341bd (diff)
downloadperl-abf724c9ab24576383f61f07468412ec5ceac8cb.tar.gz
Capitalize "SysV" correctly
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r--pod/perlipc.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod
index de6ba581e6..416ded5605 100644
--- a/pod/perlipc.pod
+++ b/pod/perlipc.pod
@@ -126,7 +126,7 @@ signal handlers like this:
sub REAPER {
$waitedpid = wait;
- # loathe sysV: it makes us not only reinstate
+ # loathe SysV: it makes us not only reinstate
# the handler, but place it after the wait
$SIG{CHLD} = \&REAPER;
}
@@ -145,7 +145,7 @@ or better still:
while (($child = waitpid(-1,WNOHANG)) > 0) {
$Kid_Status{$child} = $?;
}
- $SIG{CHLD} = \&REAPER; # still loathe sysV
+ $SIG{CHLD} = \&REAPER; # still loathe SysV
}
$SIG{CHLD} = \&REAPER;
# do something that forks...
@@ -933,7 +933,7 @@ go back to service a new client.
while ((my $pid = waitpid(-1,WNOHANG)) > 0 && WIFEXITED($?)) {
logmsg "reaped $waitedpid" . ($? ? " with exit $?" : '');
}
- $SIG{CHLD} = \&REAPER; # loathe sysV
+ $SIG{CHLD} = \&REAPER; # loathe SysV
}
$SIG{CHLD} = \&REAPER;
@@ -1115,7 +1115,7 @@ to be on the localhost, and thus everything works right.
while (($waitedpid = waitpid(-1,WNOHANG)) > 0) {
logmsg "reaped $waitedpid" . ($? ? " with exit $?" : '');
}
- $SIG{CHLD} = \&REAPER; # loathe sysV
+ $SIG{CHLD} = \&REAPER; # loathe SysV
}
$SIG{CHLD} = \&REAPER;