2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>

* rtems/new-exceptions/cpu.h, rtems/old-exceptions/cpu.h,
	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.
This commit is contained in:
Joel Sherrill
2007-12-04 22:19:05 +00:00
parent c610850ede
commit 2906c7a5b4
4 changed files with 7 additions and 20 deletions
+7
View File
@@ -1,3 +1,10 @@
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/new-exceptions/cpu.h, rtems/old-exceptions/cpu.h,
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.
2007-12-03 Till Straumann <strauman@slac.stanford.edu>
* rtems/score/cpu.h: Added comment that GDB patch sim/2376
@@ -154,15 +154,6 @@ extern "C" {
#ifndef ASM
/*
* The following table contains the information required to configure
* the PowerPC processor specific parameters.
*/
typedef struct {
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
@@ -177,16 +177,6 @@ typedef void ( *ppc_isr_entry )( int, struct CPU_Interrupt_frame * );
*/
#ifndef ASM
/*
* The following table contains the information required to configure
* the PowerPC processor specific parameters.
*/
typedef struct {
uint32_t interrupt_stack_size;
} rtems_cpu_table;
#endif
/*
* The following type defines an entry in the PPC's trap table.
*
@@ -676,7 +676,6 @@ void _CPU_Context_Initialize(
*/
void _CPU_Initialize(
rtems_cpu_table *cpu_table,
void (*thread_dispatch)
);