forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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" );
|
||||
|
||||
Reference in New Issue
Block a user