Modified to use minimum stack size and reserve the necessary amount

of space in the workspace.
This commit is contained in:
Joel Sherrill
1999-11-02 15:19:43 +00:00
parent dee8a5174f
commit f59df6b2ba
10 changed files with 26 additions and 14 deletions

View File

@@ -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,