summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:06:02 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:06:02 +0000
commitc42e6c72eb52e7d711f85837b3affbc5a46eb1dc (patch)
treea82b72ba51b8cd5bddc38aea3cb1e560d2cc0bb0 /testsuites
parentRemoved routines that had already been separated into their own files. (diff)
downloadrtems-c42e6c72eb52e7d711f85837b3affbc5a46eb1dc.tar.bz2
Increased stack space for task 1.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/sp01/init.c2
-rw-r--r--testsuites/sptests/sp01/system.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp01/init.c b/testsuites/sptests/sp01/init.c
index 59b89d7c67..771ad82898 100644
--- a/testsuites/sptests/sp01/init.c
+++ b/testsuites/sptests/sp01/init.c
@@ -45,7 +45,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_INTERRUPT_LEVEL(31),
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
diff --git a/testsuites/sptests/sp01/system.h b/testsuites/sptests/sp01/system.h
index ddcefc02a9..a9605158b0 100644
--- a/testsuites/sptests/sp01/system.h
+++ b/testsuites/sptests/sp01/system.h
@@ -35,7 +35,7 @@ rtems_task Task_1_through_3(
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_EXTRA_TASK_STACKS (3 * RTEMS_MINIMUM_STACK_SIZE)
+#define CONFIGURE_EXTRA_TASK_STACKS (4 * RTEMS_MINIMUM_STACK_SIZE)
#include <confdefs.h>