summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-01 22:11:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-01 22:11:44 +0000
commit21bbb925a964b9476b9e69ac2dcb87529cc95fc6 (patch)
treeb5f8aecfedbbd4d0fe5d6bb82fce5defd450cb1f /c
parent2002-07-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-21bbb925a964b9476b9e69ac2dcb87529cc95fc6.tar.bz2
2002-07-01 Joel Sherrill <joel@OARcorp.com>
* sp29/init.c: Corrected definitions for task stack usage.
Diffstat (limited to 'c')
-rw-r--r--c/src/tests/sptests/ChangeLog4
-rw-r--r--c/src/tests/sptests/sp29/init.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/c/src/tests/sptests/ChangeLog b/c/src/tests/sptests/ChangeLog
index f9c2946890..85800f0257 100644
--- a/c/src/tests/sptests/ChangeLog
+++ b/c/src/tests/sptests/ChangeLog
@@ -1,5 +1,9 @@
2002-07-01 Joel Sherrill <joel@OARcorp.com>
+ * sp29/init.c: Corrected definitions for task stack usage.
+
+2002-07-01 Joel Sherrill <joel@OARcorp.com>
+
* spsize/size.c: _Thread_queue_Extract_table removed.
2001-05-17 Joel Sherrill <joel@OARcorp.com>
diff --git a/c/src/tests/sptests/sp29/init.c b/c/src/tests/sptests/sp29/init.c
index 96daee4c3f..b706c982d2 100644
--- a/c/src/tests/sptests/sp29/init.c
+++ b/c/src/tests/sptests/sp29/init.c
@@ -8,6 +8,8 @@
rtems_task Init (rtems_task_argument argument);
+#define CONFIGURE_EXTRA_TASK_STACKS RTEMS_MINIMUM_STACK_SIZE
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
@@ -47,7 +49,7 @@ startTask (rtems_id arg)
sc = rtems_task_create (rtems_build_name ('S', 'R', 'V', 'A'),
100,
- 10000,
+ RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_PREEMPT|RTEMS_NO_TIMESLICE|RTEMS_NO_ASR|RTEMS_INTERRUPT_LEVEL(0),
RTEMS_NO_FLOATING_POINT|RTEMS_LOCAL,
&tid);