Change 35101 by mer...@merijn-pc09 on 2008/12/15 11:29:37 Subject: [PATCH] Typo in pod/perlfunc.pod From: Aaron Crane <p...@aaroncrane.co.uk> Date: Mon, 15 Dec 2008 11:13:17 +0000 Message-ID: <20081215111317.gi7...@aaroncrane.co.uk>
Affected files ... ... //depot/perl/pod/perlfunc.pod#609 edit Differences ... ==== //depot/perl/pod/perlfunc.pod#609 (text) ==== Index: perl/pod/perlfunc.pod --- perl/pod/perlfunc.pod#608~34945~ 2008-11-27 06:53:59.000000000 -0800 +++ perl/pod/perlfunc.pod 2008-12-15 03:29:37.000000000 -0800 @@ -7309,7 +7309,7 @@ Behaves like the wait(2) system call on your system: it waits for a child process to terminate and returns the pid of the deceased process, or C<-1> if there are no child processes. The status is returned in C<$?> -and C<{^CHILD_ERROR_NATIVE}>. +and C<${^CHILD_ERROR_NATIVE}>. Note that a return value of C<-1> could mean that child processes are being automatically reaped, as described in L<perlipc>. @@ -7319,7 +7319,7 @@ Waits for a particular child process to terminate and returns the pid of the deceased process, or C<-1> if there is no such child process. On some systems, a value of 0 indicates that there are processes still running. -The status is returned in C<$?> and C<{^CHILD_ERROR_NATIVE}>. If you say +The status is returned in C<$?> and C<${^CHILD_ERROR_NATIVE}>. If you say use POSIX ":sys_wait_h"; #... End of Patch.