<!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 (2011-01-20)</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>2011-01-20 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * libblock/src/show_bdbuf.c, score/src/objectmp.c: Avoid chain API
        violations.
</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.2676&r2=text&tr2=1.2677&diff_format=h">M</a></td><td width='1%'>1.2677</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/src/show_bdbuf.c.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/libblock/src/show_bdbuf.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/objectmp.c.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>cpukit/score/src/objectmp.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2676 rtems/cpukit/ChangeLog:1.2677
--- rtems/cpukit/ChangeLog:1.2676       Mon Jan 17 17:05:36 2011
+++ rtems/cpukit/ChangeLog      Thu Jan 20 02:16:14 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-01-20    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       * libblock/src/show_bdbuf.c, score/src/objectmp.c: Avoid chain API
+       violations.
+
</font> 2011-01-17        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * libmisc/shell/main_dd.c: Make symbol unique to avoid conflict with

<font color='#006600'>diff -u rtems/cpukit/libblock/src/show_bdbuf.c:1.8 rtems/cpukit/libblock/src/show_bdbuf.c:1.9
--- rtems/cpukit/libblock/src/show_bdbuf.c:1.8  Sun Nov 29 07:35:32 2009
+++ rtems/cpukit/libblock/src/show_bdbuf.c      Thu Jan 20 02:16:15 2011
</font><font color='#997700'>@@ -554,7 +554,7 @@
</font>    */
   if (rc == RTEMS_SUCCESSFUL) {
     the_chain_head = &(the_bdbuf->transfer_sema.Wait_queue.Queues.Fifo);
<font color='#880000'>-    the_chain_node = the_chain_head->first;
</font><font color='#000088'>+    the_chain_node = _Chain_First(the_chain_head);
</font>   }
   /*
    * walk through thread chain

<font color='#006600'>diff -u rtems/cpukit/score/src/objectmp.c:1.27 rtems/cpukit/score/src/objectmp.c:1.28
--- rtems/cpukit/score/src/objectmp.c:1.27      Fri Jul  3 10:13:47 2009
+++ rtems/cpukit/score/src/objectmp.c   Thu Jan 20 02:16:15 2011
</font><font color='#997700'>@@ -152,9 +152,9 @@
</font> 
   the_chain = &information->global_table[ _Objects_Get_node( the_id ) ];
 
<font color='#880000'>-  for ( the_node = the_chain->first ;
</font><font color='#000088'>+  for ( the_node = _Chain_First( the_chain ) ;
</font>         !_Chain_Is_tail( the_chain, the_node ) ;
<font color='#880000'>-        the_node = the_node->next ) {
</font><font color='#000088'>+        the_node = _Chain_Next( the_node ) ) {
</font> 
     the_object = (Objects_MP_Control *) the_node;
 
<font color='#997700'>@@ -224,9 +224,9 @@
</font>     if ( !_Objects_Is_local_node( node_index ) ) {
       the_chain = &information->global_table[ node_index ];
 
<font color='#880000'>-      for ( the_node = the_chain->first ;
</font><font color='#000088'>+      for ( the_node = _Chain_First( the_chain ) ;
</font>             !_Chain_Is_tail( the_chain, the_node ) ;
<font color='#880000'>-            the_node = the_node->next ) {
</font><font color='#000088'>+            the_node = _Chain_Next( the_node ) ) {
</font> 
         the_object = (Objects_MP_Control *) the_node;
 
<font color='#997700'>@@ -285,9 +285,9 @@
</font> 
   the_chain = &information->global_table[ node ];
 
<font color='#880000'>-  for ( the_node = the_chain->first ;
</font><font color='#000088'>+  for ( the_node = _Chain_First( the_chain ) ;
</font>         !_Chain_Is_tail( the_chain, the_node ) ;
<font color='#880000'>-        the_node = the_node->next ) {
</font><font color='#000088'>+        the_node = _Chain_Next( the_node ) ) {
</font> 
     the_global_object = (Objects_MP_Control *) the_node;
 
</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>