forked from Imagelibrary/rtems
2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, spfatal06/testcase.h, spfatal07/testcase.h, spfatal08/testcase.h, spfatal09/testcase.h, spsize/size.c: Eliminate pointers to API configuration tables in the main configuration table. Reference the main configuration table and the API configuration tables directly using the confdefs.h version rather than obtaining a pointer to it. This eliminated some variables, a potential fatal error, some unnecessary default configuration structures. Overall, about a 4.5% reduction in the code size for minimum and hello on the SPARC. * spfatal10/.cvsignore, spfatal10/Makefile.am, spfatal10/spfatal10.scn, spfatal10/testcase.h: Removed.
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
/*
|
||||
* Classic API Init task create failure
|
||||
*
|
||||
* COPYRIGHT (c) 1989-2008.
|
||||
* On-Line Applications Research Corporation (OAR).
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
* found in the file LICENSE in this distribution or at
|
||||
* http://www.rtems.com/license/LICENSE.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
@@ -33,12 +40,9 @@ char Workspace[ 256 ] CPU_STRUCTURE_ALIGNMENT;
|
||||
|
||||
void force_error()
|
||||
{
|
||||
rtems_configuration_table New_Configuration;
|
||||
New_Configuration = *_Configuration_Table;
|
||||
|
||||
New_Configuration.work_space_start = Workspace;
|
||||
New_Configuration.work_space_size = 256;
|
||||
Configuration.work_space_start = Workspace;
|
||||
Configuration.work_space_size = 256;
|
||||
|
||||
rtems_initialize_data_structures( &New_Configuration );
|
||||
rtems_initialize_data_structures();;
|
||||
/* we will not run this far */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user