summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/cmds.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libmisc/shell/cmds.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/cpukit/libmisc/shell/cmds.c b/cpukit/libmisc/shell/cmds.c
index 9c823c693e..d40839ad1e 100644
--- a/cpukit/libmisc/shell/cmds.c
+++ b/cpukit/libmisc/shell/cmds.c
@@ -1,4 +1,6 @@
/*
+ * XXX -- Just monitor commands until those can be integrated better
+ *
* Author: Fernando RUIZ CASAS
* Work: fernando.ruiz@ctv.es
* Home: correo@fernando-ruiz.com
@@ -29,31 +31,21 @@
int main_monitor(int argc,char * argv[]) {
rtems_monitor_command_entry_t *command;
- rtems_task_ident(RTEMS_SELF,0,&rtems_monitor_task_id);
-
- rtems_monitor_node = rtems_get_node(rtems_monitor_task_id);
-
- rtems_monitor_default_node = rtems_monitor_node;
-
if ((command=rtems_monitor_command_lookup(rtems_monitor_commands,argc,argv)))
command->command_function(argc, argv, &command->command_arg, 0);
return 0;
}
-/*-----------------------------------------------------------*/
-void register_cmds(void) {
+void shell_register_monitor_commands(void)
+{
rtems_monitor_command_entry_t *command;
/* monitor topic */
- command=rtems_monitor_commands;
+ command = rtems_monitor_commands;
while (command) {
if (strcmp("exit",command->command)) /* Exclude EXIT (alias quit)*/
shell_add_cmd(command->command,"monitor",
command->usage ,main_monitor);
- command=command->next;
+ command = command->next;
}
-
-
-
}
-/*-----------------------------------------------------------*/