From ee29de05bc8c376620d95756a6034a96f690b7b5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 4 Dec 2007 22:19:10 +0000 Subject: 2007-12-04 Joel Sherrill * 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. --- cpukit/score/cpu/i386/ChangeLog | 6 ++++++ cpukit/score/cpu/i386/cpu.c | 2 -- cpukit/score/cpu/i386/rtems/score/cpu.h | 13 ------------- 3 files changed, 6 insertions(+), 15 deletions(-) (limited to 'cpukit/score/cpu/i386') diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog index 72af672bc6..d9f7c5a2c3 100644 --- a/cpukit/score/cpu/i386/ChangeLog +++ b/cpukit/score/cpu/i386/ChangeLog @@ -1,3 +1,9 @@ +2007-12-04 Joel Sherrill + + * 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. + 2007-12-03 Joel Sherrill * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to diff --git a/cpukit/score/cpu/i386/cpu.c b/cpukit/score/cpu/i386/cpu.c index f6821e9927..08f9930271 100644 --- a/cpukit/score/cpu/i386/cpu.c +++ b/cpukit/score/cpu/i386/cpu.c @@ -26,13 +26,11 @@ * This routine performs processor dependent initialization. * * INPUT PARAMETERS: - * cpu_table - CPU table to initialize * thread_dispatch - address of disptaching routine */ void _CPU_Initialize( - rtems_cpu_table *cpu_table, void (*thread_dispatch) /* ignored on this CPU */ ) { diff --git a/cpukit/score/cpu/i386/rtems/score/cpu.h b/cpukit/score/cpu/i386/rtems/score/cpu.h index 4fc1db1933..616d1dfb58 100644 --- a/cpukit/score/cpu/i386/rtems/score/cpu.h +++ b/cpukit/score/cpu/i386/rtems/score/cpu.h @@ -178,18 +178,6 @@ typedef enum { } Intel_symbolic_exception_name; -/* - * The following table contains the information required to configure - * the i386 specific parameters. - */ - -typedef struct { - void (*pretasking_hook)( void ); - void (*predriver_hook)( void ); - void (*postdriver_hook)( void ); - uint32_t interrupt_stack_size; -} rtems_cpu_table; - /* * context size area for floating point * @@ -399,7 +387,6 @@ uint32_t _CPU_ISR_Get_level( void ); */ void _CPU_Initialize( - rtems_cpu_table *cpu_table, void (*thread_dispatch) ); -- cgit v1.2.3