From b523336c9d60b3dbf6195395ae6b591c7d82f35a Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 21 Oct 2003 04:05:47 +0000 Subject: 2003-10-21 Ralf Corsepius * capture/capture-cli.c: Reflect new rtems_monitor_command_arg_t. --- cpukit/libmisc/ChangeLog | 4 ++++ cpukit/libmisc/capture/capture-cli.c | 32 ++++++++++++++++---------------- 2 files changed, 20 insertions(+), 16 deletions(-) (limited to 'cpukit') diff --git a/cpukit/libmisc/ChangeLog b/cpukit/libmisc/ChangeLog index 32b33ff669..8153398b8a 100644 --- a/cpukit/libmisc/ChangeLog +++ b/cpukit/libmisc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-21 Ralf Corsepius + + * capture/capture-cli.c: Reflect new rtems_monitor_command_arg_t. + 2003-09-26 Ralf Corsepius PR 495/rtems_misc diff --git a/cpukit/libmisc/capture/capture-cli.c b/cpukit/libmisc/capture/capture-cli.c index 3230091178..75195f6293 100644 --- a/cpukit/libmisc/capture/capture-cli.c +++ b/cpukit/libmisc/capture/capture-cli.c @@ -1319,7 +1319,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: copen [-i] size\n", 0, rtems_capture_cli_open, - 0, + { 0 }, 0 }, { @@ -1327,7 +1327,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cclose\n", 0, rtems_capture_cli_close, - 0, + { 0 }, 0 }, { @@ -1335,7 +1335,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cenable\n", 0, rtems_capture_cli_enable, - 0, + { 0 }, 0 }, { @@ -1343,7 +1343,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cdisable\n", 0, rtems_capture_cli_disable, - 0, + { 0 }, 0 }, { @@ -1351,7 +1351,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: ctlist \n", 0, rtems_capture_cli_task_list, - 0, + { 0 }, 0 }, { @@ -1359,7 +1359,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: ctload \n", 0, rtems_capture_cli_task_load, - 0, + { 0 }, 0 }, { @@ -1367,7 +1367,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwlist\n", 0, rtems_capture_cli_watch_list, - 0, + { 0 }, 0 }, { @@ -1375,7 +1375,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwadd [task name] [id]\n", 0, rtems_capture_cli_watch_add, - 0, + { 0 }, 0 }, { @@ -1383,7 +1383,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwdel [task name] [id]\n", 0, rtems_capture_cli_watch_del, - 0, + { 0 }, 0 }, { @@ -1391,7 +1391,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwctl [task name] [id] on/off\n", 0, rtems_capture_cli_watch_control, - 0, + { 0 }, 0 }, { @@ -1399,7 +1399,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwglob on/off\n", 0, rtems_capture_cli_watch_global, - 0, + { 0 }, 0 }, { @@ -1407,7 +1407,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwceil priority\n", 0, rtems_capture_cli_watch_ceiling, - 0, + { 0 }, 0 }, { @@ -1415,7 +1415,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cwfloor priority\n", 0, rtems_capture_cli_watch_floor, - 0, + { 0 }, 0 }, { @@ -1423,7 +1423,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: ctrace [-c] [-r records]\n", 0, rtems_capture_cli_trace_records, - 0, + { 0 }, 0 }, { @@ -1431,7 +1431,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: ctrig type [from name] [from id] [to name] [to id]\n", 0, rtems_capture_cli_trigger_set, - 0, + { 0 }, 0 }, { @@ -1439,7 +1439,7 @@ static rtems_monitor_command_entry_t rtems_capture_cli_cmds[] = "usage: cflush [-n]\n", 0, rtems_capture_cli_flush, - 0, + { 0 }, 0 } }; -- cgit v1.2.3