PR 1924/cpukit
	* sptests/spfatal08/testcase.h, sptests/spfatal12/testcase.h: Update
	due to API changes.
This commit is contained in:
Sebastian Huber
2011-11-10 14:43:33 +00:00
parent 3aefd34821
commit ba136bd7ab
3 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2011-11-10 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1924/cpukit
* sptests/spfatal08/testcase.h, sptests/spfatal12/testcase.h: Update
due to API changes.
2011-10-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp2038/.cvsignore: New file.

View File

@@ -41,8 +41,9 @@ char Workspace[ 256 ] CPU_STRUCTURE_ALIGNMENT;
void force_error()
{
Configuration.work_space_start = Workspace;
Configuration.work_space_size = 256;
rtems_configuration_set_work_space_start( Workspace );
rtems_configuration_set_work_space_size( sizeof(Workspace) );
rtems_configuration_set_stack_space_size( 0 );
rtems_initialize_data_structures();;
/* we will not run this far */

View File

@@ -19,7 +19,8 @@
void force_error()
{
Configuration.work_space_size = sizeof(void *);
rtems_configuration_set_work_space_size( sizeof(void *) );
rtems_configuration_set_stack_space_size( 0 );
rtems_initialize_data_structures();
/* we will not run this far */