2008-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>

* rtems/src/regionmp.c, score/src/objectnametoidstring.c: Fix some
	warnings.
This commit is contained in:
Joel Sherrill
2008-02-26 19:20:36 +00:00
parent 253e4cf38f
commit a409c80ec4
3 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2008-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/src/regionmp.c, score/src/objectnametoidstring.c: Fix some
warnings.
2008-02-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add netstats

View File

@@ -58,7 +58,7 @@ void _Region_MP_Send_process_packet (
the_packet->proxy_id = proxy_id;
if ( operation == REGION_MP_EXTRACT_PROXY )
node = _Object_Get_node( region_id );
node = _Objects_Get_node( region_id );
else
node = MPCI_ALL_NODES;
@@ -109,7 +109,7 @@ rtems_status_code _Region_MP_Send_request_packet (
the_packet->option_set = option_set;
return (rtems_status_code) _MPCI_Send_request_packet(
_Object_Get_node( region_id ),
_Objects_Get_node( region_id ),
&the_packet->Prefix,
STATES_READY /* Not used */
);
@@ -159,7 +159,7 @@ void _Region_MP_Send_response_packet (
the_packet->Prefix.id = the_packet->Prefix.source_tid;
_MPCI_Send_response_packet(
_Object_Get_node( the_packet->Prefix.source_tid ),
_Objects_Get_node( the_packet->Prefix.source_tid ),
&the_packet->Prefix
);
break;

View File

@@ -57,9 +57,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_string(
Objects_Control *the_object;
uint32_t index;
uint32_t name_length;
#if defined(RTEMS_MULTIPROCESSING)
Objects_Name name_for_mp;
#endif
/* ASSERT: information->is_string == TRUE */