2005-06-09 Jacques Seronie Vivien <jacques.seronievivien@astrium.eads.net>

PR 790/rtems
	* sapi/src/extensioncreate.c, sapi/src/extensionident.c: Correct use of
	name. This was missed when the other ident services in rtems/src
	where changed.
This commit is contained in:
Joel Sherrill
2005-06-09 14:13:35 +00:00
parent 00b9d09957
commit e36865dbaf
3 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2005-06-09 Jacques Seronie Vivien <jacques.seronievivien@astrium.eads.net>
PR 790/rtems
* sapi/src/extensioncreate.c, sapi/src/extensionident.c: Correct use of
name. This was missed when the other ident services in rtems/src
where changed.
2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* libnetworking/net/if.h: Partial update from FreeBSD. * libnetworking/net/if.h: Partial update from FreeBSD.

View File

@@ -61,7 +61,11 @@ rtems_status_code rtems_extension_create(
_User_extensions_Add_set( &the_extension->Extension, extension_table ); _User_extensions_Add_set( &the_extension->Extension, extension_table );
_Objects_Open( &_Extension_Information, &the_extension->Object, &name ); _Objects_Open(
&_Extension_Information,
&the_extension->Object,
(Objects_Name) name
);
*id = the_extension->Object.id; *id = the_extension->Object.id;
_Thread_Enable_dispatch(); _Thread_Enable_dispatch();

View File

@@ -48,7 +48,7 @@ rtems_status_code rtems_extension_ident(
status = _Objects_Name_to_id( status = _Objects_Name_to_id(
&_Extension_Information, &_Extension_Information,
&name, (Objects_Name) name,
OBJECTS_SEARCH_LOCAL_NODE, OBJECTS_SEARCH_LOCAL_NODE,
id id
); );