Changeset c9fd602 in rtems for cpukit/score/macros/rtems/score/object.inl
- Timestamp:
- Dec 1, 2000, 7:16:52 PM (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 76c0bbbb
- Parents:
- 7afbca0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/macros/rtems/score/object.inl
r7afbca0 rc9fd602 97 97 */ 98 98 99 #define _Objects_Get_local_object( information,index ) \100 ( ( index > information->maximum) ? NULL : \101 information->local_table[ index] )99 #define _Objects_Get_local_object( _information, _index ) \ 100 ( ( (_index) > (_information)->maximum) ? NULL : \ 101 (_information)->local_table[ (_index) ] ) 102 102 103 103 /*PAGE … … 162 162 } 163 163 164 /*PAGE 165 * 166 * _Objects_Namespace_remove 167 */ 168 169 #define _Objects_Namespace_remove( _information, _the_object ) \ 170 _Objects_Clear_name( (_the_object)->name, (_information)->name_length ) 171 164 172 #endif 165 173 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.