diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-11-12 15:16:45 -0500 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-13 00:45:08 +0000 |
commit | fe12c0e8d6c27f5429e57856f94fd9369b44eabc (patch) | |
tree | 46cb1e239352b7ba992916935f151edc3b4ba7b2 | |
parent | ba553610b80f19edb980ef813a96b79c7b82f9fb (diff) | |
download | perl-fe12c0e8d6c27f5429e57856f94fd9369b44eabc.tar.gz |
exit docs out of order
Message-Id: <20011112201644.G2888@blackrider>
p4raw-id: //depot/perl@12961
-rw-r--r-- | pod/perlport.pod | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod index 5869135020..1c87b3b47d 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<exit 1> to indicate an error) by +mapping the C<1> to SS$_ABORT (C<44>). This behavior may be overridden +with the pragma C<use vmsish 'exit'>. As with the CRTL's exit() +function, C<exit 0> 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<Mac OS>, Win32, Plan9) Not implemented. (Plan9, Win32) -=item exit EXPR - -=item exit - -Emulates UNIX exit() (which considers C<exit 1> to indicate an error) by -mapping the C<1> to SS$_ABORT (C<44>). This behavior may be overridden -with the pragma C<use vmsish 'exit'>. As with the CRTL's exit() -function, C<exit 0> 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) |