forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
2011-01-20 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
2011-01-20 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
* libblock/src/show_bdbuf.c, score/src/objectmp.c: Avoid chain API
|
* libblock/src/show_bdbuf.c, score/src/objectmp.c,
|
||||||
violations.
|
score/src/threadmp.c: Avoid chain API violations.
|
||||||
|
|
||||||
2011-01-17 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2011-01-17 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ restart:
|
|||||||
|
|
||||||
_ISR_Disable( level );
|
_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 ) ;
|
!_Chain_Is_tail( &_Thread_MP_Active_proxies, proxy_node ) ;
|
||||||
) {
|
) {
|
||||||
|
|
||||||
@@ -148,7 +148,7 @@ restart:
|
|||||||
|
|
||||||
_ISR_Flash( level );
|
_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.
|
* A proxy which is only dormant is not in a blocking state.
|
||||||
|
|||||||
Reference in New Issue
Block a user