2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>

* libmisc/shell/main_mallocinfo.c, libmisc/shell/main_wkspaceinfo.c:
	Include information on whether C Program Heap and RTEMS Workspace are
	separate.
This commit is contained in:
Joel Sherrill
2008-09-19 16:15:21 +00:00
parent 4bbf70bd98
commit af70ed5b19
3 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/shell/main_mallocinfo.c, libmisc/shell/main_wkspaceinfo.c:
Include information on whether C Program Heap and RTEMS Workspace are
separate.
2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/Makefile.am: Do not build nfsclient if no networking.

View File

@@ -23,6 +23,7 @@
#include "internal.h"
extern int malloc_info( region_information_block * );
extern void rtems_shell_print_unified_work_area_message(void);
int rtems_shell_main_malloc_info(
int argc,
@@ -30,6 +31,8 @@ int rtems_shell_main_malloc_info(
)
{
if ( argc == 2 ) {
rtems_shell_print_unified_work_area_message();
if ( !strcmp( argv[1], "info" ) ) {
region_information_block info;

View File

@@ -24,6 +24,15 @@
#include <rtems/score/protectedheap.h>
#include "internal.h"
extern bool rtems_unified_work_area;
void rtems_shell_print_unified_work_area_message(void)
{
printf( "\nC Program Heap and RTEMS Workspace are %s.\n",
((rtems_unified_work_area) ? "the same" : "separate")
);
}
int rtems_shell_main_wkspace_info(
int argc,
char *argv[]
@@ -31,6 +40,8 @@ int rtems_shell_main_wkspace_info(
{
Heap_Information_block info;
rtems_shell_print_unified_work_area_message();
_Protected_heap_Get_information( &_Workspace_Area, &info );
rtems_shell_print_heap_info( "free", &info.Free );
rtems_shell_print_heap_info( "used", &info.Used );