From: Michael G. Schwern Date: Mon, 12 Nov 2001 20:16:45 +0000 (-0500) Subject: exit docs out of order X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe12c0e8d6c27f5429e57856f94fd9369b44eabc;p=p5sagit%2Fp5-mst-13.2.git exit docs out of order Message-Id: <20011112201644.G2888@blackrider> p4raw-id: //depot/perl@12961 --- diff --git a/pod/perlport.pod b/pod/perlport.pod index 5869135..1c87b3b 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -1416,6 +1416,17 @@ Implemented via Spawn. (VM/ESA) Does not automatically flush output handles on some platforms. (SunOS, Solaris, HP-UX) +=item exit EXPR + +=item exit + +Emulates UNIX exit() (which considers C to indicate an error) by +mapping the C<1> to SS$_ABORT (C<44>). This behavior may be overridden +with the pragma C. As with the CRTL's exit() +function, C is also mapped to an exit status of SS$_NORMAL +(C<1>); this mapping cannot be overridden. Any other argument to exit() +is used directly as Perl's exit status. (VMS) + =item fcntl FILEHANDLE,FUNCTION,SCALAR Not implemented. (Win32, VMS) @@ -1559,17 +1570,6 @@ Not implemented. (S, Win32, Plan9) Not implemented. (Plan9, Win32) -=item exit EXPR - -=item exit - -Emulates UNIX exit() (which considers C to indicate an error) by -mapping the C<1> to SS$_ABORT (C<44>). This behavior may be overridden -with the pragma C. As with the CRTL's exit() -function, C is also mapped to an exit status of SS$_NORMAL -(C<1>); this mapping cannot be overridden. Any other argument to exit() -is used directly as Perl's exit status. (VMS) - =item getsockopt SOCKET,LEVEL,OPTNAME Not implemented. (Plan9)