summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/semmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/semmp.c')
-rw-r--r--cpukit/rtems/src/semmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/rtems/src/semmp.c b/cpukit/rtems/src/semmp.c
index 3cade9a50c..570288d4a2 100644
--- a/cpukit/rtems/src/semmp.c
+++ b/cpukit/rtems/src/semmp.c
@@ -2,7 +2,7 @@
* Multiprocessing Support for the Semaphore Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -59,7 +59,7 @@ void _Semaphore_MP_Send_process_packet (
the_packet->proxy_id = proxy_id;
if ( operation == SEMAPHORE_MP_EXTRACT_PROXY )
- node = rtems_get_node( semaphore_id );
+ node = _Objects_Get_node( semaphore_id );
else
node = MPCI_ALL_NODES;
@@ -106,7 +106,7 @@ rtems_status_code _Semaphore_MP_Send_request_packet (
the_packet->option_set = option_set;
return _MPCI_Send_request_packet(
- rtems_get_node( semaphore_id ),
+ _Objects_Get_node( semaphore_id ),
&the_packet->Prefix,
STATES_WAITING_FOR_SEMAPHORE
);
@@ -156,7 +156,7 @@ void _Semaphore_MP_Send_response_packet (
the_packet->Prefix.id = the_packet->Prefix.source_tid;
_MPCI_Send_response_packet(
- rtems_get_node( the_packet->Prefix.source_tid ),
+ _Objects_Get_node( the_packet->Prefix.source_tid ),
&the_packet->Prefix
);
break;