summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-05 19:56:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-05 19:56:59 +0000
commit3ca0ca79ddd6b4d7319ce42188ce82f2df9b54eb (patch)
treea6afec16e211d22ff35f596e1ee2dd9ae3b22552 /testsuites
parent2007-03-05 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-3ca0ca79ddd6b4d7319ce42188ce82f2df9b54eb.tar.bz2
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.
Diffstat (limited to 'testsuites')
-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" );