2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>

* math/init.c:
	Use fprintf(stdout,..) instead of printf.
	Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM.
This commit is contained in:
Ralf Corsepius
2011-02-02 07:39:07 +00:00
parent 97315f51e5
commit b9a1642778
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* math/init.c:
Use fprintf(stdout,..) instead of printf.
Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM.
2011-01-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* math/math.scn: New.

View File

@@ -39,13 +39,13 @@ rtems_task Init(
int main( void )
#endif
{
printf( "*** FLOAT MATH TEST ***\n" );
fprintf( stdout, "*** FLOAT MATH TEST ***\n" );
domath();
domathf();
domathl();
printf( "*** END OF FLOAT MATH TEST ***\n" );
fprintf( stdout, "*** END OF FLOAT MATH TEST ***\n" );
exit( 0 );
}
@@ -57,7 +57,7 @@ int main( void )
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE