summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:11:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:11:24 +0000
commit328aa64cc053210310c6f4f58eb7fc1a2fab24da (patch)
tree72c6964a58e8c13c08008be201e016c0d7e30b8b /testsuites
parentIncreased stack space for a task. (diff)
downloadrtems-328aa64cc053210310c6f4f58eb7fc1a2fab24da.tar.bz2
Increased stack space of task 2.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/sp13/init.c2
-rw-r--r--testsuites/sptests/sp13/system.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp13/init.c b/testsuites/sptests/sp13/init.c
index 40b6574d68..ebdea0c378 100644
--- a/testsuites/sptests/sp13/init.c
+++ b/testsuites/sptests/sp13/init.c
@@ -50,7 +50,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 2 ],
4,
- RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 2 ]
diff --git a/testsuites/sptests/sp13/system.h b/testsuites/sptests/sp13/system.h
index e1efa42963..588f88b2c5 100644
--- a/testsuites/sptests/sp13/system.h
+++ b/testsuites/sptests/sp13/system.h
@@ -55,7 +55,7 @@ rtems_task Task_3(
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_EXTRA_TASK_STACKS (2 * RTEMS_MINIMUM_STACK_SIZE)
+#define CONFIGURE_EXTRA_TASK_STACKS (3 * RTEMS_MINIMUM_STACK_SIZE)
#include <confdefs.h>