summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getpid.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-12-12 06:37:01 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-12-13 08:22:58 +0100
commita00dff42cfdf201abe15829baeeb2b6341a0426b (patch)
treec155002e1d0b91337e2c60a237c114a998aa605f /cpukit/libcsupport/src/getpid.c
parentconfig: CONFIGURE_HAS_OWN_MULTIPROCESSING_TABLE (diff)
downloadrtems-a00dff42cfdf201abe15829baeeb2b6341a0426b.tar.bz2
rtems: Add and use rtems_object_get_local_node()
Update #3841.
Diffstat (limited to 'cpukit/libcsupport/src/getpid.c')
-rw-r--r--cpukit/libcsupport/src/getpid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/getpid.c b/cpukit/libcsupport/src/getpid.c
index 53ab2f4dc8..e17b1f2585 100644
--- a/cpukit/libcsupport/src/getpid.c
+++ b/cpukit/libcsupport/src/getpid.c
@@ -11,7 +11,7 @@
#include <unistd.h>
-#include <rtems/score/objectimpl.h>
+#include <rtems.h>
#include <rtems/seterr.h>
/**
@@ -19,7 +19,7 @@
*/
pid_t getpid( void )
{
- return _Objects_Local_node;
+ return rtems_object_get_local_node();
}
#if defined(RTEMS_NEWLIB) && !defined(HAVE__GETPID_R)