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. --- testsuites/tmtests/tm26/task1.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'testsuites/tmtests/tm26/task1.c') diff --git a/testsuites/tmtests/tm26/task1.c b/testsuites/tmtests/tm26/task1.c index ed94b3c8ae..377ccf6dd4 100644 --- a/testsuites/tmtests/tm26/task1.c +++ b/testsuites/tmtests/tm26/task1.c @@ -72,7 +72,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'F', 'P', '1', ' ' ), 201, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_FLOATING_POINT, &task_id @@ -85,7 +85,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'F', 'P', '2', ' ' ), 202, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_FLOATING_POINT, &task_id @@ -98,7 +98,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'L', 'O', 'W', ' ' ), 200, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &task_id @@ -111,7 +111,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'M', 'I', 'D', ' ' ), 128, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &task_id @@ -124,7 +124,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'H', 'I', 'G', 'H' ), 5, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &task_id @@ -147,7 +147,7 @@ rtems_task Init( status = rtems_task_create( rtems_build_name( 'N', 'U', 'L', 'L' ), 254, - 1024, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &task_id -- cgit v1.2.3