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:
Joel Sherrill
2002-07-30 23:24:48 +00:00
parent 57c6730273
commit 3dc936c144
4 changed files with 20 additions and 4 deletions

View File

@@ -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.

View File

@@ -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