2009-07-20 Joel Sherrill <joel.sherrill@OARcorp.com>

* score/src/corebarrierwait.c: Reverse order of tests to increase test
	coverage.
This commit is contained in:
Joel Sherrill
2009-07-20 14:51:21 +00:00
parent eecd655794
commit b2b77956dc
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2009-07-20 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/src/corebarrierwait.c: Reverse order of tests to increase test
coverage.
2009-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/ratemongetstatus.c: Fix spacing.

View File

@@ -59,9 +59,9 @@ void _CORE_barrier_Wait(
executing->Wait.return_code = CORE_BARRIER_STATUS_SUCCESSFUL;
_ISR_Disable( level );
the_barrier->number_of_waiting_threads++;
if ( the_barrier->number_of_waiting_threads ==
the_barrier->Attributes.maximum_count) {
if ( _CORE_barrier_Is_automatic( &the_barrier->Attributes ) ) {
if ( _CORE_barrier_Is_automatic( &the_barrier->Attributes ) ) {
if ( the_barrier->number_of_waiting_threads ==
the_barrier->Attributes.maximum_count) {
executing->Wait.return_code = CORE_BARRIER_STATUS_AUTOMATICALLY_RELEASED;
_ISR_Enable( level );
_CORE_barrier_Release( the_barrier, id, api_barrier_mp_support );