2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>

* spfatal12/init.c: Address to heap initialize must be aligned but size
	must be too small.
This commit is contained in:
Joel Sherrill
2009-07-06 21:05:03 +00:00
parent 147c5d512f
commit 9847e4b478
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* spfatal12/init.c: Address to heap initialize must be aligned but size
must be too small.
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Add new test to exercise case when

View File

@@ -19,7 +19,6 @@ rtems_task Init(
puts( "\n\n*** TEST FATAL 12 ***" );
puts( "_Heap_Initialize fails during RTEMS initialization" );
Configuration.work_space_start = (void *)0x03;
Configuration.work_space_size = sizeof(void *);
rtems_initialize_data_structures();
}