<!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,
        score/src/threadmp.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.2677&r2=text&tr2=1.2678&diff_format=h">M</a></td><td width='1%'>1.2678</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadmp.c.diff?r1=text&tr1=1.19&r2=text&tr2=1.20&diff_format=h">M</a></td><td width='1%'>1.20</td><td width='100%'>cpukit/score/src/threadmp.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2677 rtems/cpukit/ChangeLog:1.2678
--- rtems/cpukit/ChangeLog:1.2677       Thu Jan 20 02:16:14 2011
+++ rtems/cpukit/ChangeLog      Thu Jan 20 03:18:00 2011
</font><font color='#997700'>@@ -1,7 +1,7 @@
</font> 2011-01-20        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
<font color='#880000'>-   * libblock/src/show_bdbuf.c, score/src/objectmp.c: Avoid chain API
-       violations.
</font><font color='#000088'>+      * libblock/src/show_bdbuf.c, score/src/objectmp.c,
+       score/src/threadmp.c: Avoid chain API violations.
</font> 
 2011-01-17     Joel Sherrill <joel.sherrill@oarcorp.com>
 

<font color='#006600'>diff -u rtems/cpukit/score/src/threadmp.c:1.19 rtems/cpukit/score/src/threadmp.c:1.20
--- rtems/cpukit/score/src/threadmp.c:1.19      Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/threadmp.c   Thu Jan 20 03:18:00 2011
</font><font color='#997700'>@@ -132,7 +132,7 @@
</font> 
   _ISR_Disable( level );
 
<font color='#880000'>-    for (  proxy_node = _Thread_MP_Active_proxies.first;
</font><font color='#000088'>+    for (  proxy_node = _Chain_First( &_Thread_MP_Active_proxies );
</font>            !_Chain_Is_tail( &_Thread_MP_Active_proxies, proxy_node ) ;
         ) {
 
<font color='#997700'>@@ -148,7 +148,7 @@
</font> 
       _ISR_Flash( level );
 
<font color='#880000'>-      proxy_node = proxy_node->next;
</font><font color='#000088'>+      proxy_node = _Chain_Next( proxy_node );
</font> 
       /*
        *  A proxy which is only dormant is not in a blocking state.
</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>