summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfatal06
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-15 19:21:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-15 19:21:10 +0000
commitbb9c80df457c8c054ae99508fed4959886f78930 (patch)
treebb80894b267958d9566904c06c951ca85d2222a7 /testsuites/sptests/spfatal06
parent2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-bb9c80df457c8c054ae99508fed4959886f78930.tar.bz2
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.
Diffstat (limited to 'testsuites/sptests/spfatal06')
-rw-r--r--testsuites/sptests/spfatal06/testcase.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/testsuites/sptests/spfatal06/testcase.h b/testsuites/sptests/spfatal06/testcase.h
index 4573bf1bf9..81d1c1e8fe 100644
--- a/testsuites/sptests/spfatal06/testcase.h
+++ b/testsuites/sptests/spfatal06/testcase.h
@@ -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$
*/
@@ -29,22 +36,18 @@ rtems_initialization_tasks_table Initialization_tasks[] = {
#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
#define FATAL_ERROR_EXPECTED_ERROR INTERNAL_ERROR_BAD_STACK_HOOK
-void *New_stack_allocate_hook( uint32_t unused)
+void *New_stack_allocate_hook(uint32_t unused)
{
}
void force_error()
{
- rtems_configuration_table New_Configuration;
-
- New_Configuration = *_Configuration_Table;
-
- if (_Configuration_Table->stack_free_hook != NULL)
- New_Configuration.stack_allocate_hook = NULL;
+ if (Configuration.stack_free_hook != NULL)
+ Configuration.stack_allocate_hook = NULL;
else
- New_Configuration.stack_allocate_hook = &New_stack_allocate_hook;
+ Configuration.stack_allocate_hook = &New_stack_allocate_hook;
- rtems_initialize_data_structures( &New_Configuration );
+ rtems_initialize_data_structures();
/* we will not run this far */
}