- Timestamp:
- Jan 20, 1998, 8:32:15 PM (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 972dc40
- Parents:
- fbaf52eb
- Location:
- c/src/exec/score
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/inline/object.inl
rfbaf52eb r6ab91d9 237 237 238 238 index = _Objects_Get_index( the_object->id ); 239 information->local_table[ index ] = NULL;239 information->local_table[ index ] = (Objects_Control *) NULL; 240 240 _Objects_Clear_name( the_object->name, information->name_length ); 241 241 } -
c/src/exec/score/inline/rtems/score/object.inl
rfbaf52eb r6ab91d9 237 237 238 238 index = _Objects_Get_index( the_object->id ); 239 information->local_table[ index ] = NULL;239 information->local_table[ index ] = (Objects_Control *) NULL; 240 240 _Objects_Clear_name( the_object->name, information->name_length ); 241 241 } -
c/src/exec/score/macros/object.inl
rfbaf52eb r6ab91d9 141 141 \ 142 142 _index = _Objects_Get_index( (_the_object)->id ); \ 143 (_information)->local_table[ _index ] = NULL; \143 (_information)->local_table[ _index ] = (Objects_Control *) NULL; \ 144 144 _Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \ 145 145 } -
c/src/exec/score/macros/rtems/score/object.inl
rfbaf52eb r6ab91d9 141 141 \ 142 142 _index = _Objects_Get_index( (_the_object)->id ); \ 143 (_information)->local_table[ _index ] = NULL; \143 (_information)->local_table[ _index ] = (Objects_Control *) NULL; \ 144 144 _Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \ 145 145 }
Note: See TracChangeset
for help on using the changeset viewer.