Files
rtems/cpukit/libmisc/shell/internal.h
Ralf Corsepius 9ac81fe2ea 2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* libmisc/shell/internal.h: Don't include "config.h".
	Adjust header guard.
2008-08-21 12:30:23 +00:00

45 lines
994 B
C

/*
* Shell Internal Information
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#ifndef _RTEMS_SHELL_INTERNAL_H
#define _RTEMS_SHELL_INTERNAL_H
struct rtems_shell_topic_tt;
typedef struct rtems_shell_topic_tt rtems_shell_topic_t;
struct rtems_shell_topic_tt {
char *topic;
rtems_shell_topic_t *next;
};
extern rtems_shell_cmd_t * rtems_shell_first_cmd;
extern rtems_shell_topic_t * rtems_shell_first_topic;
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
);
void rtems_shell_print_heap_info(
const char *c,
Heap_Information *h
);
#endif