2007-12-19 Joel Sherrill <joel.sherrill@OARcorp.com>

* spsize/size.c: Account for previous changes in calculation of MPCI
	receive server stack.
This commit is contained in:
Joel Sherrill
2007-12-19 16:05:56 +00:00
parent e1a22c112c
commit bbd655a3d5
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-12-19 Joel Sherrill <joel.sherrill@OARcorp.com>
* spsize/size.c: Account for previous changes in calculation of MPCI
receive server stack.
2007-12-14 Joel Sherrill <joel.sherrill@OARcorp.com> 2007-12-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp09/screen07.c, sp09/sp09.scn: Add test for * sp09/screen07.c, sp09/sp09.scn: Add test for

View File

@@ -3,7 +3,7 @@
* This program is run to determine the data space and work space * This program is run to determine the data space and work space
* requirements of the current version of RTEMS. * requirements of the current version of RTEMS.
* *
* COPYRIGHT (c) 1989-1999. * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -112,8 +112,10 @@ int getint( void );
#endif #endif
#if defined(RTEMS_MULTIPROCESSING) #if defined(RTEMS_MULTIPROCESSING)
#define MPCI_RECEIVE_SERVER_STACK_SIZE \
#define MP_SYSTEM_TASKS \ #define MP_SYSTEM_TASKS \
(MPCI_RECEIVE_SERVER_STACK_SIZE + \ (STACK_MINIMUM_SIZE + CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK + \
sizeof(Thread_Control) + \ sizeof(Thread_Control) + \
MPCI_RECEIVE_SERVER_FP) MPCI_RECEIVE_SERVER_FP)
#else #else