summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spsize/size.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-19 16:05:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-19 16:05:56 +0000
commitbbd655a3d50d4b2ecbe746a4ab2cb4f72a205bc3 (patch)
treee63892d13daefc0c362d92e0443b00602138fbc9 /testsuites/sptests/spsize/size.c
parent2007-12-19 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-bbd655a3d50d4b2ecbe746a4ab2cb4f72a205bc3.tar.bz2
2007-12-19 Joel Sherrill <joel.sherrill@OARcorp.com>
* spsize/size.c: Account for previous changes in calculation of MPCI receive server stack.
Diffstat (limited to 'testsuites/sptests/spsize/size.c')
-rw-r--r--testsuites/sptests/spsize/size.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/sptests/spsize/size.c b/testsuites/sptests/spsize/size.c
index cd4ca80553..fd70a3ad60 100644
--- a/testsuites/sptests/spsize/size.c
+++ b/testsuites/sptests/spsize/size.c
@@ -3,7 +3,7 @@
* This program is run to determine the data space and work space
* requirements of the current version of RTEMS.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -112,8 +112,10 @@ int getint( void );
#endif
#if defined(RTEMS_MULTIPROCESSING)
+#define MPCI_RECEIVE_SERVER_STACK_SIZE \
+
#define MP_SYSTEM_TASKS \
- (MPCI_RECEIVE_SERVER_STACK_SIZE + \
+ (STACK_MINIMUM_SIZE + CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK + \
sizeof(Thread_Control) + \
MPCI_RECEIVE_SERVER_FP)
#else