From: Abigail Date: Tue, 13 Jan 2009 12:36:20 +0000 (+0100) Subject: Capitalize "SysV" correctly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=abf724c9ab24576383f61f07468412ec5ceac8cb;p=p5sagit%2Fp5-mst-13.2.git Capitalize "SysV" correctly --- diff --git a/pod/perlipc.pod b/pod/perlipc.pod index de6ba58..416ded5 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;