2008-01-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* fileio/init.c, fileio/system.h, hello/init.c: Enable malloc
	statistics so shell output can be interesting.
This commit is contained in:
Joel Sherrill
2008-01-11 21:43:58 +00:00
parent be8ab6a72d
commit aec29f178c
4 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2008-01-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* fileio/init.c, fileio/system.h, hello/init.c: Enable malloc
statistics so shell output can be interesting.
2007-12-17 Chris Johns <chrisj@rtems.org>
* testsuites/samples/fileio/init.c: Change shell_* to

View File

@@ -10,7 +10,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

View File

@@ -3,7 +3,7 @@
* This include file contains information that is included in every
* function in the test set.
*
* COPYRIGHT (c) 1989-1999.
* COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -52,6 +52,8 @@ rtems_task Init(
#define CONFIGURE_EXTRA_TASK_STACKS (6 * RTEMS_MINIMUM_STACK_SIZE)
#define CONFIGURE_MALLOC_STATISTICS
#include <rtems/confdefs.h>
/*

View File

@@ -32,5 +32,7 @@ rtems_task Init(
printf( "\n\n*** HELLO WORLD TEST ***\n" );
printf( "Hello World\n" );
printf( "*** END OF HELLO WORLD TEST ***\n" );
rtems_shell_main_wkspace_info(0, NULL);
rtems_shell_main_joel(0, NULL);
exit( 0 );
}