2009-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>

* score/src/heapwalk.c: Remove include of stdlib.h since abort was not
	called anymore.
This commit is contained in:
Joel Sherrill
2009-06-13 22:49:28 +00:00
parent 2a4e8e0457
commit 671e042e35
2 changed files with 6 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
2009-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/heapwalk.c: Remove include of stdlib.h since abort was not
called anymore.
2009-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/include/rtems/rtems/region.h,
+1 -3
View File
@@ -15,8 +15,6 @@
#include "config.h"
#endif
#include <stdlib.h> /* abort */
#include <rtems/system.h>
#include <rtems/score/address.h>
#include <rtems/score/sysstate.h>
@@ -180,7 +178,7 @@ bool _Heap_Walk(
error = 1;
}
if(do_dump && error)
if (do_dump && error)
_Internal_error_Occurred( INTERNAL_ERROR_CORE, true, 0xffff0000 );
return error;