From: <ped...@us...> - 2009-09-06 20:35:21
|
Revision: 1370 http://cegcc.svn.sourceforge.net/cegcc/?rev=1370&view=rev Author: pedroalves Date: 2009-09-06 20:35:09 +0000 (Sun, 06 Sep 2009) Log Message: ----------- * abort.c (abort): Exit with exit code 1 instead of 0. Modified Paths: -------------- trunk/cegcc/src/mingw/ChangeLog.mingw32ce trunk/cegcc/src/mingw/abort.c Modified: trunk/cegcc/src/mingw/ChangeLog.mingw32ce =================================================================== --- trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2009-09-06 20:32:07 UTC (rev 1369) +++ trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2009-09-06 20:35:09 UTC (rev 1370) @@ -1,3 +1,7 @@ +2009-02-08 Pedro Alves <ped...@us...> + + * abort.c (abort): Exit with exit code 1 instead of 0. + 2009-09-01 Danny Backx <dan...@us...> * include/tchar.h (_tcsnccpy, _tcsncpy, _tcsclen): Define. Modified: trunk/cegcc/src/mingw/abort.c =================================================================== --- trunk/cegcc/src/mingw/abort.c 2009-09-06 20:32:07 UTC (rev 1369) +++ trunk/cegcc/src/mingw/abort.c 2009-09-06 20:35:09 UTC (rev 1370) @@ -4,6 +4,6 @@ void abort(void) { - TerminateProcess (GetCurrentProcess(), 0); + TerminateProcess (GetCurrentProcess(), 1); while (1); /* Kill 'noreturn function does return' warning. */ } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |