mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-16 20:38:29 +00:00
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:
@@ -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>
|
2008-02-20 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add netstats
|
* libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add netstats
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ void _Region_MP_Send_process_packet (
|
|||||||
the_packet->proxy_id = proxy_id;
|
the_packet->proxy_id = proxy_id;
|
||||||
|
|
||||||
if ( operation == REGION_MP_EXTRACT_PROXY )
|
if ( operation == REGION_MP_EXTRACT_PROXY )
|
||||||
node = _Object_Get_node( region_id );
|
node = _Objects_Get_node( region_id );
|
||||||
else
|
else
|
||||||
node = MPCI_ALL_NODES;
|
node = MPCI_ALL_NODES;
|
||||||
|
|
||||||
@@ -109,7 +109,7 @@ rtems_status_code _Region_MP_Send_request_packet (
|
|||||||
the_packet->option_set = option_set;
|
the_packet->option_set = option_set;
|
||||||
|
|
||||||
return (rtems_status_code) _MPCI_Send_request_packet(
|
return (rtems_status_code) _MPCI_Send_request_packet(
|
||||||
_Object_Get_node( region_id ),
|
_Objects_Get_node( region_id ),
|
||||||
&the_packet->Prefix,
|
&the_packet->Prefix,
|
||||||
STATES_READY /* Not used */
|
STATES_READY /* Not used */
|
||||||
);
|
);
|
||||||
@@ -159,7 +159,7 @@ void _Region_MP_Send_response_packet (
|
|||||||
the_packet->Prefix.id = the_packet->Prefix.source_tid;
|
the_packet->Prefix.id = the_packet->Prefix.source_tid;
|
||||||
|
|
||||||
_MPCI_Send_response_packet(
|
_MPCI_Send_response_packet(
|
||||||
_Object_Get_node( the_packet->Prefix.source_tid ),
|
_Objects_Get_node( the_packet->Prefix.source_tid ),
|
||||||
&the_packet->Prefix
|
&the_packet->Prefix
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -57,9 +57,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_string(
|
|||||||
Objects_Control *the_object;
|
Objects_Control *the_object;
|
||||||
uint32_t index;
|
uint32_t index;
|
||||||
uint32_t name_length;
|
uint32_t name_length;
|
||||||
#if defined(RTEMS_MULTIPROCESSING)
|
|
||||||
Objects_Name name_for_mp;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* ASSERT: information->is_string == TRUE */
|
/* ASSERT: information->is_string == TRUE */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user