From f59df6b2baed58229781d8fcda2d5bd3ab753341 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Nov 1999 15:19:43 +0000 Subject: Modified to use minimum stack size and reserve the necessary amount of space in the workspace. --- testsuites/samples/unlimited/test3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testsuites/samples/unlimited/test3.c') 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, -- cgit v1.2.3