forked from Imagelibrary/rtems
* libmisc/Makefile.am, libmisc/shell/cmd_help.c, libmisc/shell/cmds.c, libmisc/shell/internal.h, libmisc/shell/shell.c, libmisc/shell/shell.h, libmisc/shell/shellconfig.h: Command set processing now separated from main command loop. Addition of user commands and aliases tested. Monitor registration now explicit. * libmisc/shell/shell_cmdset.c, libmisc/shell/shell_makeargs.c, libmisc/shell/write_file.c: New files.
37 lines
700 B
C
37 lines
700 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
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
struct shell_topic_tt;
|
|
typedef struct shell_topic_tt shell_topic_t;
|
|
|
|
struct shell_topic_tt {
|
|
char *topic;
|
|
shell_topic_t *next;
|
|
};
|
|
|
|
|
|
extern shell_cmd_t * shell_first_cmd;
|
|
extern shell_topic_t * shell_first_topic;
|
|
|
|
shell_topic_t * shell_lookup_topic(char * topic);
|
|
|
|
|
|
void shell_register_monitor_commands(void);
|
|
void shell_initialize_command_set(void);
|
|
|
|
#endif
|