RTEMS 6.1-rc6
|
Shell Command Set Management. More...
#include <stdio.h>
#include <time.h>
#include <termios.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <rtems.h>
#include <rtems/shell.h>
#include <rtems/shellconfig.h>
#include <rtems/libio_.h>
#include "internal.h"
Functions | |
rtems_shell_topic_t * | rtems_shell_lookup_topic (const char *topic) |
rtems_shell_cmd_t * | rtems_shell_lookup_cmd (const char *cmd) |
rtems_shell_cmd_t * | rtems_shell_add_cmd_struct (rtems_shell_cmd_t *shell_cmd) |
rtems_shell_cmd_t * | rtems_shell_add_cmd (const char *name, const char *topic, const char *usage, rtems_shell_command_t command) |
rtems_shell_cmd_t * | rtems_shell_alias_cmd (const char *cmd, const char *alias) |
bool | rtems_shell_can_see_cmd (const rtems_shell_cmd_t *shell_cmd) |
int | rtems_shell_execute_cmd (const char *cmd, int argc, char *argv[]) |
Variables | |
rtems_shell_cmd_t * | rtems_shell_first_cmd |
rtems_shell_topic_t * | rtems_shell_first_topic |
Shell Command Set Management.