<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-11-19)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-11-19 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * libmisc/monitor/mon-monitor.c: Fixed broken monitor command list.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2650&r2=text&tr2=1.2651&diff_format=h">M</a></td><td width='1%'>1.2651</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/monitor/mon-monitor.c.diff?r1=text&tr1=1.41&r2=text&tr2=1.42&diff_format=h">M</a></td><td width='1%'>1.42</td><td width='100%'>cpukit/libmisc/monitor/mon-monitor.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2650 rtems/cpukit/ChangeLog:1.2651
--- rtems/cpukit/ChangeLog:1.2650       Tue Nov 16 13:14:09 2010
+++ rtems/cpukit/ChangeLog      Fri Nov 19 03:44:21 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-11-19    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       * libmisc/monitor/mon-monitor.c: Fixed broken monitor command list.
+
</font> 2010-11-16        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        PR 1718/cpukit

<font color='#006600'>diff -u rtems/cpukit/libmisc/monitor/mon-monitor.c:1.41 rtems/cpukit/libmisc/monitor/mon-monitor.c:1.42
--- rtems/cpukit/libmisc/monitor/mon-monitor.c:1.41     Tue Nov 16 11:51:02 2010
+++ rtems/cpukit/libmisc/monitor/mon-monitor.c  Fri Nov 19 03:44:21 2010
</font><font color='#997700'>@@ -106,16 +106,6 @@
</font>       { 0 },
       &rtems_monitor_commands[6],
     },
<font color='#880000'>-#if defined(RTEMS_MULTIPROCESSING)
-    { "node",
-      "Specify default node number for commands that take id's.\n"
-      "  node [ node number ]",
-      0,
-      rtems_monitor_node_cmd,
-      { 0 },
-      &rtems_monitor_commands[7],
-    },
-#endif
</font>     { "symbol",
       "Display value associated with specified symbol. "
       "Defaults to displaying all known symbols.\n"
<font color='#997700'>@@ -123,7 +113,7 @@
</font>       0,
       rtems_monitor_symbol_cmd,
       { .symbol_table = &rtems_monitor_symbols },
<font color='#880000'>-      &rtems_monitor_commands[8],
</font><font color='#000088'>+      &rtems_monitor_commands[7],
</font>     },
     { "extension",
       "Display information about specified extensions. "
<font color='#997700'>@@ -132,7 +122,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_EXTENSION },
<font color='#880000'>-      &rtems_monitor_commands[9],
</font><font color='#000088'>+      &rtems_monitor_commands[8],
</font>     },
     { "task",
       "Display information about the specified tasks. "
<font color='#997700'>@@ -141,7 +131,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_TASK },
<font color='#880000'>-      &rtems_monitor_commands[10],
</font><font color='#000088'>+      &rtems_monitor_commands[9],
</font>     },
     { "queue",
       "Display information about the specified message queues. "
<font color='#997700'>@@ -150,7 +140,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_QUEUE },
<font color='#880000'>-      &rtems_monitor_commands[11],
</font><font color='#000088'>+      &rtems_monitor_commands[10],
</font>     },
     { "sema",
       "sema [id [id ... ] ]\n"
<font color='#997700'>@@ -160,7 +150,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_SEMAPHORE },
<font color='#880000'>-      &rtems_monitor_commands[12],
</font><font color='#000088'>+      &rtems_monitor_commands[11],
</font>     },
     { "region",
       "region [id [id ... ] ]\n"
<font color='#997700'>@@ -170,7 +160,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_REGION },
<font color='#880000'>-      &rtems_monitor_commands[13],
</font><font color='#000088'>+      &rtems_monitor_commands[12],
</font>     },
     { "part",
       "part [id [id ... ] ]\n"
<font color='#997700'>@@ -180,7 +170,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_PARTITION },
<font color='#880000'>-      &rtems_monitor_commands[14],
</font><font color='#000088'>+      &rtems_monitor_commands[13],
</font>     },
     { "object",
       "Display information about specified RTEMS objects. "
<font color='#997700'>@@ -190,7 +180,7 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_INVALID },
<font color='#880000'>-      &rtems_monitor_commands[15],
</font><font color='#000088'>+      &rtems_monitor_commands[14],
</font>     },
     { "driver",
       "Display the RTEMS device driver table.\n"
<font color='#997700'>@@ -198,14 +188,14 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_DRIVER },
<font color='#880000'>-      &rtems_monitor_commands[16],
</font><font color='#000088'>+      &rtems_monitor_commands[15],
</font>     },
     { "dname",
       "Displays information about named drivers.\n",
       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_DNAME },
<font color='#880000'>-      &rtems_monitor_commands[17],
</font><font color='#000088'>+      &rtems_monitor_commands[16],
</font>     },
     { "exit",
       "Invoke 'rtems_fatal_error_occurred' with 'status' "
<font color='#997700'>@@ -214,7 +204,7 @@
</font>       0,
       rtems_monitor_fatal_cmd,
       { .status_code = RTEMS_SUCCESSFUL },
<font color='#880000'>-      &rtems_monitor_commands[18],
</font><font color='#000088'>+      &rtems_monitor_commands[17],
</font>     },
     { "fatal",
       "'exit' with fatal error; default error is RTEMS_TASK_EXITTED\n"
<font color='#997700'>@@ -222,22 +212,35 @@
</font>       0,
       rtems_monitor_fatal_cmd,
       { .status_code = RTEMS_TASK_EXITTED },           /* exit value */
<font color='#880000'>-      &rtems_monitor_commands[19],
</font><font color='#000088'>+      &rtems_monitor_commands[18],
</font>     },
     { "quit",
       "Alias for 'exit'\n",
       0,
       rtems_monitor_fatal_cmd,
       { .status_code = RTEMS_SUCCESSFUL },             /* exit value */
<font color='#880000'>-      &rtems_monitor_commands[20],
</font><font color='#000088'>+      &rtems_monitor_commands[19],
</font>     },
     { "reset",
       "(SW)Resets the System.",
       0,
       rtems_monitor_reset_cmd,
       { 0 },
<font color='#000088'>+      &rtems_monitor_commands[20],
+    },
+#if defined(RTEMS_MULTIPROCESSING)
+    { "node",
+      "Specify default node number for commands that take id's.\n"
+      "  node [ node number ]",
+      0,
+      rtems_monitor_node_cmd,
+      { 0 },
</font>       &rtems_monitor_commands[21],
     },
<font color='#000088'>+  #define RTEMS_MONITOR_POSIX_NEXT 22
+#else
+  #define RTEMS_MONITOR_POSIX_NEXT 21
+#endif
</font> #ifdef RTEMS_POSIX_API
     { "pthread",
       "Display information about the specified pthreads. "
<font color='#997700'>@@ -246,11 +249,11 @@
</font>       0,
       rtems_monitor_object_cmd,
       { RTEMS_MONITOR_OBJECT_PTHREAD },
<font color='#880000'>-      &rtems_monitor_commands[22],
</font><font color='#000088'>+      &rtems_monitor_commands[RTEMS_MONITOR_POSIX_NEXT],
</font>     },
<font color='#880000'>-  #define RTEMS_MONITOR_DEBUGGER_NEXT 23
</font><font color='#000088'>+  #define RTEMS_MONITOR_DEBUGGER_NEXT (RTEMS_MONITOR_POSIX_NEXT + 1)
</font> #else
<font color='#880000'>-  #define RTEMS_MONITOR_DEBUGGER_NEXT 22
</font><font color='#000088'>+  #define RTEMS_MONITOR_DEBUGGER_NEXT RTEMS_MONITOR_POSIX_NEXT
</font> #endif
 #ifdef CPU_INVOKE_DEBUGGER
     { "debugger",
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>