summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/internal.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-07 17:46:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-07 17:46:25 +0000
commit694bd9f68e551cdfbda2e93a6fe260ffba5eff04 (patch)
treeecb0762ecdef60f4da46f0a700440a8069ecd3e3 /cpukit/libmisc/shell/internal.h
parent2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-694bd9f68e551cdfbda2e93a6fe260ffba5eff04.tar.bz2
2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/Makefile.am: Add new files. * libmisc/shell/internal.h: Prototype for rtems_shell_print_heap_info() * libmisc/shell/main_mallocinfo.c: Use rtems_shell_print_heap_info(). * libmisc/shell/shellconfig.h: Add wkspace command. * libmisc/shell/main_wkspaceinfo.c, libmisc/shell/print_heapinfo.c: New files.
Diffstat (limited to 'cpukit/libmisc/shell/internal.h')
-rw-r--r--cpukit/libmisc/shell/internal.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/cpukit/libmisc/shell/internal.h b/cpukit/libmisc/shell/internal.h
index 1e4a4c88da..e542769b12 100644
--- a/cpukit/libmisc/shell/internal.h
+++ b/cpukit/libmisc/shell/internal.h
@@ -33,9 +33,16 @@ rtems_shell_topic_t * rtems_shell_lookup_topic(char * topic);
void rtems_shell_register_monitor_commands(void);
void rtems_shell_initialize_command_set(void);
-int rtems_shell_libc_mounter (const char* driver,
- const char* path,
- rtems_shell_filesystems_t* fs,
- rtems_filesystem_options_t options);
+int rtems_shell_libc_mounter(
+ const char* driver,
+ const char* path,
+ rtems_shell_filesystems_t* fs,
+ rtems_filesystem_options_t options
+);
+
+void rtems_shell_print_heap_info(
+ const char *c,
+ Heap_Information *h
+);
#endif