_CPU_Trap_Table_area is now conditional based on whether or not

the application requires rtems to allocate a trap table
This commit is contained in:
Joel Sherrill
1997-01-08 16:22:22 +00:00
parent c6126e57fb
commit d135fc52cd
2 changed files with 10 additions and 4 deletions

View File

@@ -393,8 +393,11 @@ uninitialized += (sizeof _CPU_Interrupt_stack_low) +
/* cpu.h */
uninitialized += (sizeof _CPU_Interrupt_stack_low) +
(sizeof _CPU_Interrupt_stack_high) +
(sizeof _CPU_Null_fp_context) +
(sizeof _CPU_Trap_Table_area);
(sizeof _CPU_Null_fp_context);
#ifndef NO_TABLE_MOVE
uninitialized += (sizeof _CPU_Trap_Table_area);
#endif
#ifdef erc32
uninitialized += (sizeof _ERC32_MEC_Timer_Control_Mirror);

View File

@@ -393,8 +393,11 @@ uninitialized += (sizeof _CPU_Interrupt_stack_low) +
/* cpu.h */
uninitialized += (sizeof _CPU_Interrupt_stack_low) +
(sizeof _CPU_Interrupt_stack_high) +
(sizeof _CPU_Null_fp_context) +
(sizeof _CPU_Trap_Table_area);
(sizeof _CPU_Null_fp_context);
#ifndef NO_TABLE_MOVE
uninitialized += (sizeof _CPU_Trap_Table_area);
#endif
#ifdef erc32
uninitialized += (sizeof _ERC32_MEC_Timer_Control_Mirror);