forked from Imagelibrary/rtems
2002-07-30 Joel Sherrill <joel@OARcorp.com>
* spsize/size.c: Don't reference the RTEMS allocated interrupt stack if the port doesn't configure using it.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-07-30 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* spsize/size.c: Don't reference the RTEMS allocated interrupt
|
||||
stack if the port doesn't configure using it.
|
||||
|
||||
2002-07-04 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* Jump table for single entry point removed.
|
||||
|
||||
@@ -398,9 +398,12 @@ uninitialized = 0;
|
||||
#ifdef __i386__
|
||||
|
||||
/* cpu.h */
|
||||
uninitialized += (sizeof _CPU_Null_fp_context) +
|
||||
(sizeof _CPU_Interrupt_stack_low) +
|
||||
uninitialized += (sizeof _CPU_Null_fp_context);
|
||||
|
||||
#if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
|
||||
uninitialized += (sizeof _CPU_Interrupt_stack_low) +
|
||||
(sizeof _CPU_Interrupt_stack_high);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user