summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-05 19:44:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-05 19:44:08 +0000
commit99c3730cc0ca3f3d34d4d222edf9b5c1c8c563a7 (patch)
treebbe7fbcecaf0f3aafddb2869fc277ecea4393ac9
parent2007-03-02 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-99c3730cc0ca3f3d34d4d222edf9b5c1c8c563a7.tar.bz2
2007-03-05 Joel Sherrill <joel@OARcorp.com>
* sp26/system.h: Correct memory required for stack sizes.
-rw-r--r--testsuites/sptests/ChangeLog4
-rw-r--r--testsuites/sptests/sp26/system.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 11517107f8..f81389bc17 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-05 Joel Sherrill <joel@OARcorp.com>
+
+ * sp26/system.h: Correct memory required for stack sizes.
+
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* sp09/screen07.c, sp09/task3.c, sp13/task1.c, sp13/task2.c,
diff --git a/testsuites/sptests/sp26/system.h b/testsuites/sptests/sp26/system.h
index 7e22420cfc..0213d5743d 100644
--- a/testsuites/sptests/sp26/system.h
+++ b/testsuites/sptests/sp26/system.h
@@ -3,7 +3,7 @@
* This include file contains information that is included in every
* function in the test set.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2006.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -28,6 +28,7 @@ void task1(void);
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_EXTRA_TASK_STACKS (5 * 3 * RTEMS_MINIMUM_STACK_SIZE)
#define CONFIGURE_MAXIMUM_TASKS 5
#define CONFIGURE_MAXIMUM_REGIONS 1
#define CONFIGURE_EXTRA_TASK_STACKS (RTEMS_MINIMUM_STACK_SIZE * 4)