* libblock/src/show_bdbuf.c, score/src/objectmp.c,
	score/src/threadmp.c: Avoid chain API violations.
This commit is contained in:
Sebastian Huber
2011-01-20 09:18:00 +00:00
parent 61380a5451
commit 9deaa215ac
2 changed files with 4 additions and 4 deletions

View File

@@ -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>

View File

@@ -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.