summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:06:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:06:34 +0000
commit83199e3caf5e139cddb004d39be69055015ade2a (patch)
treea7c72d95792ee172f7e9eee76d1017a35343bd5a /cpukit/score/cpu/i386
parent2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-83199e3caf5e139cddb004d39be69055015ade2a.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Eliminate the interrupt_table_segment and interrupt_table_offset fields in the i386 CPU Table since they are never read.
Diffstat (limited to 'cpukit/score/cpu/i386')
-rw-r--r--cpukit/score/cpu/i386/ChangeLog6
-rw-r--r--cpukit/score/cpu/i386/rtems/score/cpu.h13
2 files changed, 6 insertions, 13 deletions
diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog
index 16f126456c..45e8faab92 100644
--- a/cpukit/score/cpu/i386/ChangeLog
+++ b/cpukit/score/cpu/i386/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * rtems/score/cpu.h: Eliminate the interrupt_table_segment and
+ interrupt_table_offset fields in the i386 CPU Table since they are
+ never read.
+
2007-05-09 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
diff --git a/cpukit/score/cpu/i386/rtems/score/cpu.h b/cpukit/score/cpu/i386/rtems/score/cpu.h
index f58d16ec26..5d6020cfcd 100644
--- a/cpukit/score/cpu/i386/rtems/score/cpu.h
+++ b/cpukit/score/cpu/i386/rtems/score/cpu.h
@@ -195,9 +195,6 @@ typedef struct {
void * (*stack_allocate_hook)( uint32_t );
void (*stack_free_hook)( void* );
/* end of fields required on all CPUs */
-
- uint32_t interrupt_table_segment;
- void *interrupt_table_offset;
} rtems_cpu_table;
/*
@@ -206,16 +203,6 @@ typedef struct {
*/
/*
- * Macros to access i386 specific additions to the CPU Table
- */
-
-#define rtems_cpu_configuration_get_interrupt_table_segment() \
- (_CPU_Table.interrupt_table_segment)
-
-#define rtems_cpu_configuration_get_interrupt_table_offset() \
- (_CPU_Table.interrupt_table_offset)
-
-/*
* context size area for floating point
*
* NOTE: This is out of place on the i386 to avoid a forward reference.