forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user