source: rtems/testsuites/sptests/spfatal07/testcase.h @ d5ae827

4.104.115
Last change on this file since d5ae827 was bb9c80df, checked in by Joel Sherrill <joel.sherrill@…>, on 12/15/08 at 19:21:10

2008-12-15 Joel Sherrill <joel.sherrill@…>

  • 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.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * Classic API Init task create failure
3 *
4 *  COPYRIGHT (c) 1989-2008.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14/*
15 *  Way too much stack space.  Should generate a fatal error
16 *  on the init task create.
17 */
18#define CONFIGURE_HAS_OWN_INIT_TASK_TABLE
19#define CONFIGURE_INIT_TASK_STACK_SIZE   RTEMS_MINIMUM_STACK_SIZE
20rtems_initialization_tasks_table Initialization_tasks[] = {
21  { rtems_build_name('I', 'N', 'I', ' '),
22    RTEMS_MINIMUM_STACK_SIZE,
23    1,
24    RTEMS_DEFAULT_ATTRIBUTES,
25    Init,
26    RTEMS_DEFAULT_MODES,
27    0
28  }
29};
30#define CONFIGURE_INIT_TASK_TABLE Initialization_tasks
31#define CONFIGURE_INIT_TASK_TABLE_SIZE \
32  sizeof(CONFIGURE_INIT_TASK_TABLE) / sizeof(rtems_initialization_tasks_table)
33
34#define FATAL_ERROR_DESCRIPTION          "Core Configuration Invalid ISR stack size"
35#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_CORE
36#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
37#define FATAL_ERROR_EXPECTED_ERROR       INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL
38
39void force_error()
40{
41  Configuration.interrupt_stack_size = (STACK_MINIMUM_SIZE-1);
42  rtems_initialize_data_structures();
43   
44  /* we will not run this far */
45}
Note: See TracBrowser for help on using the repository browser.