Author: particle
Date: Wed Jul 11 13:49:04 2007
New Revision: 19792

Modified:
   trunk/docs/pdds/pdd23_exceptions.pod

Changes in other areas also in this revision:
Modified:
   trunk/compilers/imcc/imclexer.c
   trunk/compilers/imcc/instructions.c
   trunk/compilers/imcc/main.c
   trunk/compilers/imcc/parser_util.c
   trunk/compilers/pirc/src/jsonout.c
   trunk/compilers/pirc/src/pastout.c
   trunk/compilers/pirc/src/pirlexer.c
   trunk/compilers/pirc/src/pirmain.c
   trunk/compilers/pirc/src/pirout.c
   trunk/compilers/pirc/src/pirparser.c
   trunk/compilers/pirc/src/pirutil.c
   trunk/compilers/pirc/src/pirvtable.c
   trunk/config/gen/cpu/i386/memcpy_mmx.c
   trunk/config/gen/cpu/i386/memcpy_mmx_in.c
   trunk/config/gen/cpu/i386/memcpy_sse.c
   trunk/config/gen/cpu/i386/memcpy_sse_in.c
   trunk/examples/c/nanoparrot.c
   trunk/languages/cola/gen.c
   trunk/languages/cola/parser.c
   trunk/languages/cola/semant.c
   trunk/languages/cola/sym.c
   trunk/languages/cola/type.c
   trunk/src/bignum.c
   trunk/src/exceptions.c
   trunk/src/gc/resources.c
   trunk/src/io/io_unix.c
   trunk/src/ops/debug.ops
   trunk/src/pdump.c
   trunk/t/pmc/bignum.t
   trunk/t/src/compiler.t

Log:
#43805: [PATCH] [CAGE] replace exit(0)/exit(1) with 
exit(EXIT_SUCCESS)/exit(EXIT_FAILURE) -- Courtesy of Mark Glines

Modified: trunk/docs/pdds/pdd23_exceptions.pod
==============================================================================
--- trunk/docs/pdds/pdd23_exceptions.pod        (original)
+++ trunk/docs/pdds/pdd23_exceptions.pod        Wed Jul 11 13:49:04 2007
@@ -112,7 +112,7 @@
 If this exception is not handled, it results in Parrot returning an error
 indication and the stringification of I<MESSAGE> to its embedding environment.
 When running standalone, this means writing the stringification of I<MESSAGE>
-to standard error and executing the standard C function C<exit(1)>.
+to standard error and executing the standard C function C<exit(EXIT_FAILURE)>.
 
 =item B<exit [ I<EXITCODE> ]>
 

Reply via email to