Changeset 75063f00 in rtems for cpukit/score/src/coresemsurrender.c
- Timestamp:
- Jul 7, 2003, 6:03:05 PM (18 years ago)
- Children:
- 9cde23b
- Parents:
- 38028293
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.