summaryrefslogtreecommitdiffstats
path: root/testsuites
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
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')
-rw-r--r--testsuites/sptests/ChangeLog5
-rw-r--r--testsuites/sptests/spsize/size.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index f8c8b2e532..7701a6e61f 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -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>
* sp09/screen07.c, sp09/sp09.scn: Add test for
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