summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/shell/internal.h')
-rw-r--r--cpukit/libmisc/shell/internal.h25
1 files changed, 15 insertions, 10 deletions
diff --git a/cpukit/libmisc/shell/internal.h b/cpukit/libmisc/shell/internal.h
index c33909c619..1e4a4c88da 100644
--- a/cpukit/libmisc/shell/internal.h
+++ b/cpukit/libmisc/shell/internal.h
@@ -15,22 +15,27 @@
#include "config.h"
#endif
-struct shell_topic_tt;
-typedef struct shell_topic_tt shell_topic_t;
+struct rtems_shell_topic_tt;
+typedef struct rtems_shell_topic_tt rtems_shell_topic_t;
-struct shell_topic_tt {
- char *topic;
- shell_topic_t *next;
+struct rtems_shell_topic_tt {
+ char *topic;
+ rtems_shell_topic_t *next;
};
-extern shell_cmd_t * shell_first_cmd;
-extern shell_topic_t * shell_first_topic;
+extern rtems_shell_cmd_t * rtems_shell_first_cmd;
+extern rtems_shell_topic_t * rtems_shell_first_topic;
-shell_topic_t * shell_lookup_topic(char * topic);
+rtems_shell_topic_t * rtems_shell_lookup_topic(char * topic);
-void shell_register_monitor_commands(void);
-void shell_initialize_command_set(void);
+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);
#endif