summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/nios2/rtems/score/cpu.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:10 +0000
commitee29de05bc8c376620d95756a6034a96f690b7b5 (patch)
tree67c24fdf5b514680780f6c11015b5eedee230d4b /cpukit/score/cpu/nios2/rtems/score/cpu.h
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ee29de05bc8c376620d95756a6034a96f690b7b5.tar.bz2
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
Diffstat (limited to 'cpukit/score/cpu/nios2/rtems/score/cpu.h')
-rw-r--r--cpukit/score/cpu/nios2/rtems/score/cpu.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/cpukit/score/cpu/nios2/rtems/score/cpu.h b/cpukit/score/cpu/nios2/rtems/score/cpu.h
index e7225d8fcc..ad066305b6 100644
--- a/cpukit/score/cpu/nios2/rtems/score/cpu.h
+++ b/cpukit/score/cpu/nios2/rtems/score/cpu.h
@@ -541,30 +541,6 @@ typedef struct {
uint32_t ipending;
} CPU_Exception_frame;
-
-/**
- * The following table contains the information required to configure
- * the XXX processor specific parameters.
- *
- * Port Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
-typedef struct {
- /** This element points to the BSP's pretasking hook. */
- void (*pretasking_hook)( void );
- /** This element points to the BSP's predriver hook. */
- void (*predriver_hook)( void );
- /** This element points to the BSP's postdriver hook. */
- void (*postdriver_hook)( void );
- /** This field specifies the size of the interrupt stack. If less than or
- * equal to the minimum stack size, then the interrupt stack will be of
- * minimum stack size.
- */
- uint32_t interrupt_stack_size;
-} rtems_cpu_table;
-
/**
* This variable is optional. It is used on CPUs on which it is difficult
* to generate an "uninitialized" FP context. It is filled in by
@@ -1161,7 +1137,6 @@ uint32_t _CPU_ISR_Get_level( void );
* XXX document implementation including references if appropriate
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch)
);