summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/posix/src/getpid.c22
-rw-r--r--cpukit/posix/src/getpid.c22
2 files changed, 44 insertions, 0 deletions
diff --git a/c/src/exec/posix/src/getpid.c b/c/src/exec/posix/src/getpid.c
new file mode 100644
index 0000000000..b42981398a
--- /dev/null
+++ b/c/src/exec/posix/src/getpid.c
@@ -0,0 +1,22 @@
+/*
+ * $Id$
+ */
+
+#include <limits.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+
+#include <rtems/system.h>
+#include <rtems/score/object.h>
+#include <rtems/posix/seterr.h>
+
+/*PAGE
+ *
+ * 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83
+ */
+
+pid_t getpid( void )
+{
+ return _Objects_Local_node;
+}
diff --git a/cpukit/posix/src/getpid.c b/cpukit/posix/src/getpid.c
new file mode 100644
index 0000000000..b42981398a
--- /dev/null
+++ b/cpukit/posix/src/getpid.c
@@ -0,0 +1,22 @@
+/*
+ * $Id$
+ */
+
+#include <limits.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+
+#include <rtems/system.h>
+#include <rtems/score/object.h>
+#include <rtems/posix/seterr.h>
+
+/*PAGE
+ *
+ * 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83
+ */
+
+pid_t getpid( void )
+{
+ return _Objects_Local_node;
+}