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

PR 790/rtems
	* src/extensioncreate.c, 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:14:04 +00:00
parent b0c516bfa1
commit 73ca21f95e
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
* src/extensioncreate.c, src/extensionident.c: Correct use of name.
This was missed when the other ident services in rtems/src where
changed.
2004-06-08 Joel Sherrill <joel@OARcorp.com>
* ChangeLog, include/confdefs.h: Reverse previous accidental commit

View File

@@ -57,7 +57,11 @@ rtems_status_code rtems_extension_create(
_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;
_Thread_Enable_dispatch();

View File

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