Changeset e36865d in rtems
- Timestamp:
- 06/09/05 14:13:35 (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- af28e68e
- Parents:
- 00b9d09
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r00b9d09 re36865d 1 2005-06-09 Jacques Seronie Vivien <jacques.seronievivien@astrium.eads.net> 2 3 PR 790/rtems 4 * sapi/src/extensioncreate.c, sapi/src/extensionident.c: Correct use of 5 name. This was missed when the other ident services in rtems/src 6 where changed. 7 1 8 2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org> 2 9 -
cpukit/sapi/src/extensioncreate.c
r00b9d09 re36865d 62 62 _User_extensions_Add_set( &the_extension->Extension, extension_table ); 63 63 64 _Objects_Open( &_Extension_Information, &the_extension->Object, &name ); 64 _Objects_Open( 65 &_Extension_Information, 66 &the_extension->Object, 67 (Objects_Name) name 68 ); 65 69 66 70 *id = the_extension->Object.id; -
cpukit/sapi/src/extensionident.c
r00b9d09 re36865d 49 49 status = _Objects_Name_to_id( 50 50 &_Extension_Information, 51 &name,51 (Objects_Name) name, 52 52 OBJECTS_SEARCH_LOCAL_NODE, 53 53 id
Note: See TracChangeset
for help on using the changeset viewer.