mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user