Changeset af10d3ef in rtems
- Timestamp:
- 11/02/99 15:57:43 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9693fdac
- Parents:
- 3f421dab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/inline/rtems/score/object.inl
r3f421dab raf10d3ef 172 172 ) 173 173 { 174 if ( index > information->maximum )174 if ( index > information->maximum ) 175 175 return NULL; 176 176 return ( information->local_table[ index ] ); … … 193 193 ) 194 194 { 195 if ( index <= information->maximum )195 if ( index <= information->maximum ) 196 196 information->local_table[ index ] = the_object; 197 197 } -
cpukit/score/inline/rtems/score/object.inl
r3f421dab raf10d3ef 172 172 ) 173 173 { 174 if ( index > information->maximum )174 if ( index > information->maximum ) 175 175 return NULL; 176 176 return ( information->local_table[ index ] ); … … 193 193 ) 194 194 { 195 if ( index <= information->maximum )195 if ( index <= information->maximum ) 196 196 information->local_table[ index ] = the_object; 197 197 }
Note: See TracChangeset
for help on using the changeset viewer.