From: Rafael Garcia-Suarez Date: Fri, 3 Jun 2005 09:29:36 +0000 (+0000) Subject: POD fixes X-Git-Tag: accepted/trunk/20130322.191538~20560 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eadb07ed3f5b6ca1fbf5669326ef7159ad11e894;p=platform%2Fupstream%2Fperl.git POD fixes p4raw-id: //depot/perl@24691 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 9732bdb..55b6ba1 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -6768,7 +6768,7 @@ example should print the following table: 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. @@ -6777,7 +6777,7 @@ being automatically reaped, as described in L. 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"; #...