summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/ChangeLog5
-rw-r--r--testsuites/libtests/malloctest/init.c12
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 <joel@OARcorp.com>
+
+ * malloctest/init.c: Be explicit about need for default and floating
+ point attributes. This is just a style change.
+
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* 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" );