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/sptests/sp12/init.c | 6 +++--- testsuites/sptests/sp12/pridrv.c | 2 +- testsuites/sptests/sp12/task1.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'testsuites/sptests/sp12') diff --git a/testsuites/sptests/sp12/init.c b/testsuites/sptests/sp12/init.c index 159ef815da..ecc45d8a4b 100644 --- a/testsuites/sptests/sp12/init.c +++ b/testsuites/sptests/sp12/init.c @@ -138,7 +138,7 @@ pause(); status = rtems_task_create( Task_name[ 1 ], 4, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ 1 ] @@ -148,7 +148,7 @@ pause(); status = rtems_task_create( Task_name[ 2 ], 4, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ 2 ] @@ -158,7 +158,7 @@ pause(); status = rtems_task_create( Task_name[ 3 ], 4, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ 3 ] diff --git a/testsuites/sptests/sp12/pridrv.c b/testsuites/sptests/sp12/pridrv.c index 7174faf784..7d6e1f9dc4 100644 --- a/testsuites/sptests/sp12/pridrv.c +++ b/testsuites/sptests/sp12/pridrv.c @@ -47,7 +47,7 @@ void Priority_test_driver( status = rtems_task_create( Priority_task_name[ index ], Task_priority[ index ], - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Priority_task_id[ index ] diff --git a/testsuites/sptests/sp12/task1.c b/testsuites/sptests/sp12/task1.c index d3d7f3ed15..f70ad521b1 100644 --- a/testsuites/sptests/sp12/task1.c +++ b/testsuites/sptests/sp12/task1.c @@ -100,7 +100,7 @@ pause(); status = rtems_task_create( Task_name[ 4 ], 4, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ 4 ] @@ -110,7 +110,7 @@ pause(); status = rtems_task_create( Task_name[ 5 ], 4, - 2048, + RTEMS_MINIMUM_STACK_SIZE, RTEMS_DEFAULT_MODES, RTEMS_DEFAULT_ATTRIBUTES, &Task_id[ 5 ] -- cgit v1.2.3