summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/regionmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/rtems/src/regionmp.c b/cpukit/rtems/src/regionmp.c
index 5780c6be58..3f33d56934 100644
--- a/cpukit/rtems/src/regionmp.c
+++ b/cpukit/rtems/src/regionmp.c
@@ -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;