From 3ca0ca79ddd6b4d7319ce42188ce82f2df9b54eb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 5 Mar 2007 19:56:59 +0000 Subject: [PATCH] 2007-03-05 Joel Sherrill * malloctest/init.c: Be explicit about need for default and floating point attributes. This is just a style change. --- testsuites/libtests/ChangeLog | 5 +++++ testsuites/libtests/malloctest/init.c | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index 1807e912a9..a887d572b5 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,8 @@ +2007-03-05 Joel Sherrill + + * malloctest/init.c: Be explicit about need for default and floating + point attributes. This is just a style change. + 2007-02-06 Joel Sherrill * rtems++/Task1.cc, rtems++/Task3.cc: Address size_t/uint32_t typing diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c index 8eae14c0ee..1fcfd597ce 100644 --- a/testsuites/libtests/malloctest/init.c +++ b/testsuites/libtests/malloctest/init.c @@ -11,7 +11,7 @@ * * Output parameters: NONE * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -48,7 +48,7 @@ rtems_task Init( 1, TASK_STACK_SIZE, RTEMS_DEFAULT_MODES, - RTEMS_FLOATING_POINT, + RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT, &Task_id[ 1 ] ); directive_failed( status, "rtems_task_create of TA1" ); @@ -58,7 +58,7 @@ rtems_task Init( 1, TASK_STACK_SIZE, RTEMS_DEFAULT_MODES, - RTEMS_FLOATING_POINT, + RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT, &Task_id[ 2 ] ); directive_failed( status, "rtems_task_create of TA2" ); @@ -68,7 +68,7 @@ rtems_task Init( 1, TASK_STACK_SIZE, RTEMS_DEFAULT_MODES, - RTEMS_FLOATING_POINT, + RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT, &Task_id[ 3 ] ); directive_failed( status, "rtems_task_create of TA3" ); @@ -78,7 +78,7 @@ rtems_task Init( 1, TASK_STACK_SIZE, RTEMS_DEFAULT_MODES, - RTEMS_FLOATING_POINT, + RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT, &Task_id[ 4 ] ); directive_failed( status, "rtems_task_create of TA4" ); @@ -88,7 +88,7 @@ rtems_task Init( 1, TASK_STACK_SIZE, RTEMS_DEFAULT_MODES, - RTEMS_FLOATING_POINT, + RTEMS_DEFAULT_ATTRIBUTES | RTEMS_FLOATING_POINT, &Task_id[ 5 ] ); directive_failed( status, "rtems_task_create of TA5" );