change log for rtems (2011-01-20)
rtems-vc at rtems.org
rtems-vc at rtems.org
Thu Jan 20 10:11:02 UTC 2011
*sh*:
2011-01-20 Sebastian Huber <sebastian.huber at embedded-brains.de>
* libblock/src/show_bdbuf.c, score/src/objectmp.c,
score/src/threadmp.c: Avoid chain API violations.
M 1.2678 cpukit/ChangeLog
M 1.20 cpukit/score/src/threadmp.c
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
@@ -1,7 +1,7 @@
2011-01-20 Sebastian Huber <sebastian.huber at embedded-brains.de>
- * libblock/src/show_bdbuf.c, score/src/objectmp.c: Avoid chain API
- violations.
+ * libblock/src/show_bdbuf.c, score/src/objectmp.c,
+ score/src/threadmp.c: Avoid chain API violations.
2011-01-17 Joel Sherrill <joel.sherrill at oarcorp.com>
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
@@ -132,7 +132,7 @@
_ISR_Disable( level );
- for ( proxy_node = _Thread_MP_Active_proxies.first;
+ for ( proxy_node = _Chain_First( &_Thread_MP_Active_proxies );
!_Chain_Is_tail( &_Thread_MP_Active_proxies, proxy_node ) ;
) {
@@ -148,7 +148,7 @@
_ISR_Flash( level );
- proxy_node = proxy_node->next;
+ proxy_node = _Chain_Next( proxy_node );
/*
* A proxy which is only dormant is not in a blocking state.
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110120/dba47719/attachment-0001.html>
More information about the vc
mailing list