summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/unlimited/test3.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:19:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:19:43 +0000
commitf59df6b2baed58229781d8fcda2d5bd3ab753341 (patch)
tree95e9156dcb758293e0a447d94335749c17cbb9b2 /testsuites/samples/unlimited/test3.c
parentCorrected wildcard to pickup CPU model dependent library pieces. (diff)
downloadrtems-f59df6b2baed58229781d8fcda2d5bd3ab753341.tar.bz2
Modified to use minimum stack size and reserve the necessary amount
of space in the workspace.
Diffstat (limited to '')
-rw-r--r--testsuites/samples/unlimited/test3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/samples/unlimited/test3.c b/testsuites/samples/unlimited/test3.c
index c7e3091ca0..283b548f0e 100644
--- a/testsuites/samples/unlimited/test3.c
+++ b/testsuites/samples/unlimited/test3.c
@@ -63,7 +63,7 @@ void test3()
result = rtems_task_create(name,
10,
- 4096,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_ATTRIBUTES,
RTEMS_LOCAL,
&task_id[task_count]);
@@ -72,6 +72,7 @@ void test3()
break;
printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]);
+ fflush(stdout);
result = rtems_task_start(task_id[task_count],
test_task,