2011-12-05 Ralf Corsépius <ralf.corsepius@rtems.org>

* libmisc/shell/shell.h: Add rtems_shell_main_monitor.
	* libmisc/shell/cmds.c: Make rtems_shell_main_monitor non-static.
This commit is contained in:
Ralf Corsepius
2011-12-05 09:46:57 +00:00
parent 5d64fef2a7
commit 32f5014b51
3 changed files with 9 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-12-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* libmisc/shell/shell.h: Add rtems_shell_main_monitor.
* libmisc/shell/cmds.c: Make rtems_shell_main_monitor non-static.
2011-12-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/src/tasks.c: Fix typos.
+1 -1
View File
@@ -29,7 +29,7 @@
* with this you can call at all the rtems monitor commands.
* Not all work fine but you can show the rtems status and more.
*-----------------------------------------------------------*/
static int rtems_shell_main_monitor(int argc, char **argv) {
int rtems_shell_main_monitor(int argc, char **argv) {
const rtems_monitor_command_entry_t *command = NULL;
if (argc < 1) {
+3
View File
@@ -305,6 +305,9 @@ extern rtems_status_code rtems_shell_wait_for_input(
void *notification_arg
);
extern int rtems_shell_main_monitor(int argc, char **argv);
#ifdef __cplusplus
}
#endif