From e41eaa881a1a0ba6645d4a23d1313088c8ccfb7f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 18 Dec 2008 15:25:27 +0000 Subject: 2008-12-18 Sebastian Huber * libmisc/serdbg/termios_printk.c, libmisc/serdbg/termios_printk.h: Fixed incompatible return value. * libmisc/cpuuse/cpuusagereport.c: Changed output format. * libmisc/Makefile.am, libmisc/monitor/mon-editor.c: New file. * libmisc/capture/capture-cli.c, libmisc/monitor/mon-command.c, libmisc/monitor/mon-monitor.c, libmisc/monitor/mon-object.c, libmisc/monitor/mon-prmisc.c, libmisc/monitor/mon-symbols.c, libmisc/monitor/monitor.h, libmisc/shell/cat_file.c, libmisc/shell/cmds.c, libmisc/shell/internal.h, libmisc/shell/main_help.c, libmisc/shell/shell.c, libmisc/shell/shell.h, libmisc/shell/shell_cmdset.c, libmisc/shell/shell_getchar.c, libmisc/shell/str2int.c: Various global data is now read only. Added 'const' qualifier to many pointer parameters. It is no longer possible to remove monitor commands. Moved monitor line editor into a separate file to avoid unnecessary dependencies. --- cpukit/libmisc/shell/shell.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cpukit/libmisc/shell/shell.c') diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c index a320e46902..0a784ba712 100644 --- a/cpukit/libmisc/shell/shell.c +++ b/cpukit/libmisc/shell/shell.c @@ -939,10 +939,10 @@ bool rtems_shell_main_loop( /* ----------------------------------------------- */ static rtems_status_code rtems_shell_run ( - char *task_name, + const char *task_name, uint32_t task_stacksize, rtems_task_priority task_priority, - char *devname, + const char *devname, int forever, int wait, const char* input, @@ -957,7 +957,7 @@ static rtems_status_code rtems_shell_run ( rtems_shell_env_t *shell_env; rtems_name name; - if ( task_name ) + if ( task_name && strlen(task_name) >= 4) name = rtems_build_name( task_name[0], task_name[1], task_name[2], task_name[3]); else @@ -1010,10 +1010,10 @@ static rtems_status_code rtems_shell_run ( } rtems_status_code rtems_shell_init( - char *task_name, + const char *task_name, uint32_t task_stacksize, rtems_task_priority task_priority, - char *devname, + const char *devname, int forever, int wait ) @@ -1039,7 +1039,7 @@ rtems_status_code rtems_shell_init( } rtems_status_code rtems_shell_script ( - char *task_name, + const char *task_name, uint32_t task_stacksize, rtems_task_priority task_priority, const char* input, -- cgit v1.2.3