summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2007-09-10 06:43:18 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2007-09-10 06:43:18 +0000
commit908d6ed9d6180d96240afe8eb4b483869f642246 (patch)
tree00589870980d1b12cc7460f47ff8fddea56a8f88 /cpukit
parent2007-09-08 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-908d6ed9d6180d96240afe8eb4b483869f642246.tar.bz2
Corrected linked list of monitor commands
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libmisc/monitor/mon-monitor.c19
2 files changed, 16 insertions, 8 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 02b9b99606..f6bd41acfb 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-10 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
+
+ * libmisc/monitor/mon-monitor.c:
+ Corrected linked list of rtems_monitor_commands
+
2007-09-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/malloc.c: If RTEMS_HEAP_DEBUG is defined, add heap
diff --git a/cpukit/libmisc/monitor/mon-monitor.c b/cpukit/libmisc/monitor/mon-monitor.c
index 8145604463..3007fd7ed4 100644
--- a/cpukit/libmisc/monitor/mon-monitor.c
+++ b/cpukit/libmisc/monitor/mon-monitor.c
@@ -168,6 +168,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_SEMAPHORE },
+ &rtems_monitor_commands[12],
},
{ "region",
"region [id [id ... ] ]\n"
@@ -177,6 +178,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_REGION },
+ &rtems_monitor_commands[13],
},
{ "part",
"part [id [id ... ] ]\n"
@@ -186,6 +188,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_PARTITION },
+ &rtems_monitor_commands[14],
},
{ "object",
"Display information about specified RTEMS objects. "
@@ -195,7 +198,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_INVALID },
- &rtems_monitor_commands[12],
+ &rtems_monitor_commands[15],
},
{ "driver",
"Display the RTEMS device driver table.\n"
@@ -203,14 +206,14 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_DRIVER },
- &rtems_monitor_commands[13],
+ &rtems_monitor_commands[16],
},
{ "dname",
"Displays information about named drivers.\n",
0,
rtems_monitor_object_cmd,
{ RTEMS_MONITOR_OBJECT_DNAME },
- &rtems_monitor_commands[14],
+ &rtems_monitor_commands[17],
},
{ "exit",
"Invoke 'rtems_fatal_error_occurred' with 'status' "
@@ -219,7 +222,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_fatal_cmd,
{ .status_code = RTEMS_SUCCESSFUL },
- &rtems_monitor_commands[15],
+ &rtems_monitor_commands[18],
},
{ "fatal",
"'exit' with fatal error; default error is RTEMS_TASK_EXITTED\n"
@@ -227,14 +230,14 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_fatal_cmd,
{ .status_code = RTEMS_TASK_EXITTED }, /* exit value */
- &rtems_monitor_commands[16],
+ &rtems_monitor_commands[19],
},
{ "quit",
"Alias for 'exit'\n",
0,
rtems_monitor_fatal_cmd,
{ .status_code = RTEMS_SUCCESSFUL }, /* exit value */
- &rtems_monitor_commands[17],
+ &rtems_monitor_commands[20],
},
{ "help",
"Provide information about commands. "
@@ -243,7 +246,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_help_cmd,
{ .monitor_command_entry = rtems_monitor_commands },
- &rtems_monitor_commands[18],
+ &rtems_monitor_commands[21],
},
#ifdef CPU_INVOKE_DEBUGGER
{ "debugger",
@@ -252,7 +255,7 @@ rtems_monitor_command_entry_t rtems_monitor_commands[] = {
0,
rtems_monitor_debugger_cmd,
{ 0 },
- &rtems_monitor_commands[19],
+ &rtems_monitor_commands[22],
},
#endif
{ 0, 0, 0, 0, { 0 }, &rtems_registered_commands },