summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:08:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:08:05 +0000
commit4443984a4cd6400f801fc7a5d5cf16ac4bed3b57 (patch)
tree24b0ca74aff6868dfb8d514ac9fead1d26509f90 /testsuites
parentIncreased stack space for task 1. (diff)
downloadrtems-4443984a4cd6400f801fc7a5d5cf16ac4bed3b57.tar.bz2
Increased stack space for a task.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/sp03/init.c2
-rw-r--r--testsuites/sptests/sp03/system.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/sptests/sp03/init.c b/testsuites/sptests/sp03/init.c
index c266cfd600..b73c77dd36 100644
--- a/testsuites/sptests/sp03/init.c
+++ b/testsuites/sptests/sp03/init.c
@@ -39,7 +39,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
diff --git a/testsuites/sptests/sp03/system.h b/testsuites/sptests/sp03/system.h
index c52f7a9896..eb1e37a46a 100644
--- a/testsuites/sptests/sp03/system.h
+++ b/testsuites/sptests/sp03/system.h
@@ -39,6 +39,8 @@ rtems_task Task_2(
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+#define CONFIGURE_EXTRA_TASK_STACKS (1 * RTEMS_MINIMUM_STACK_SIZE)
+
#include <confdefs.h>
/* global variables */