Changeset 75063f00 in rtems


Ignore:
Timestamp:
07/07/03 18:03:05 (20 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
9cde23b
Parents:
38028293
Message:

2003-07-07 Joel Sherrill <joel@…>

PR 417/rtems

  • src/coresemsurrender.c: Correct incorrect check for maximum_count reported by Sergei Organov <osv@…>.
Location:
cpukit/score
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/ChangeLog

    r38028293 r75063f00  
     12003-07-07      Joel Sherrill <joel@OARcorp.com>
     2
     3        PR 417/rtems
     4        * src/coresemsurrender.c: Correct incorrect check for maximum_count
     5        reported by Sergei Organov <osv@topconrd.ru>.
     6
    172003-06-13      Joel Sherrill <joel@OARcorp.com>
    28
  • cpukit/score/src/coresemsurrender.c

    r38028293 r75063f00  
    6363  } else {
    6464    _ISR_Disable( level );
    65       if ( the_semaphore->count <= the_semaphore->Attributes.maximum_count )
     65      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
    6666        the_semaphore->count += 1;
    6767      else
Note: See TracChangeset for help on using the changeset viewer.