Changeset 75063f00 in rtems
- Timestamp:
- 07/07/03 18:03:05 (20 years ago)
- Children:
- 9cde23b
- Parents:
- 38028293
- Location:
- cpukit/score
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
r38028293 r75063f00 1 2003-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 1 7 2003-06-13 Joel Sherrill <joel@OARcorp.com> 2 8 -
cpukit/score/src/coresemsurrender.c
r38028293 r75063f00 63 63 } else { 64 64 _ISR_Disable( level ); 65 if ( the_semaphore->count < =the_semaphore->Attributes.maximum_count )65 if ( the_semaphore->count < the_semaphore->Attributes.maximum_count ) 66 66 the_semaphore->count += 1; 67 67 else
Note: See TracChangeset
for help on using the changeset viewer.