summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:06:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:06:42 +0000
commit5e35d353dc5149c7e15b52b7df169580d6b1ade2 (patch)
tree32e74fc47b488590f318a8db89b2c175ca5fe0f3 /doc
parent2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-5e35d353dc5149c7e15b52b7df169580d6b1ade2.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu_supplement/i386.t: Eliminate the interrupt_table_segment and interrupt_table_offset fields in the i386 CPU Table since they are never read.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/cpu_supplement/i386.t8
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 62ce7a7fb7..4810dbfdbb 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,5 +1,11 @@
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * cpu_supplement/i386.t: Eliminate the interrupt_table_segment and
+ interrupt_table_offset fields in the i386 CPU Table since they are
+ never read.
+
+2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* cpu_supplement/m68k.t: Eliminate the interrupt_vector_table field in
the m68k CPU Table since it is never read.
diff --git a/doc/cpu_supplement/i386.t b/doc/cpu_supplement/i386.t
index 1b153dd240..b710f55c4d 100644
--- a/doc/cpu_supplement/i386.t
+++ b/doc/cpu_supplement/i386.t
@@ -606,15 +606,13 @@ typedef struct @{
void (*predriver_hook)( void );
void (*idle_task)( void );
boolean do_zero_of_workspace;
- unsigned32 idle_task_stack_size;
- unsigned32 interrupt_stack_size;
- unsigned32 extra_mpci_receive_server_stack;
+ uint32_t idle_task_stack_size;
+ uint32_t interrupt_stack_size;
+ uint32_t extra_mpci_receive_server_stack;
void * (*stack_allocate_hook)( unsigned32 );
void (*stack_free_hook)( void* );
/* end of fields required on all CPUs */
- unsigned32 interrupt_segment;
- void *interrupt_vector_table;
@} rtems_cpu_table;
@end group
@end example