From 3652ad356bf13abe0963c992cbbda96476d31609 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 19 Sep 1995 14:53:29 +0000 Subject: Minor bug fixes to get all targets compilable and running. The single biggest changes were the expansion of the workspace size macro to include other types of objects and the increase in the minimum stack size for most CPUs. --- c/src/tests/tmtests/tm04/task1.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'c/src/tests/tmtests/tm04/task1.c') diff --git a/c/src/tests/tmtests/tm04/task1.c b/c/src/tests/tmtests/tm04/task1.c index 8156a17daa..603724dddb 100644 --- a/c/src/tests/tmtests/tm04/task1.c +++ b/c/src/tests/tmtests/tm04/task1.c @@ -61,7 +61,7 @@ void test_init() status = rtems_task_create( rtems_build_name( 'T', 'I', 'M', 'E' ), 10, - 1024, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_NO_PREEMPT, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ index ] @@ -179,7 +179,7 @@ rtems_task High_task( rtems_task_create( name, 10, - 1024, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_NO_PREEMPT, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ index ] @@ -217,7 +217,7 @@ rtems_task High_task( status = rtems_task_create( name, 250, - 1024, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_NO_PREEMPT, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ index ] @@ -264,7 +264,7 @@ rtems_task High_task( status = rtems_task_create( name, 250, - 1024, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ index ] @@ -344,7 +344,7 @@ rtems_task Low_tasks( status = rtems_task_create( rtems_build_name( 'H', 'I', ' ', ' ' ), 5, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &id @@ -357,7 +357,7 @@ rtems_task Low_tasks( status = rtems_task_create( rtems_build_name( 'H', 'I', 'G', 'H' ), 3, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Highest_id -- cgit v1.2.3