summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-03-10 16:57:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-03-10 16:57:08 +0000
commitd627c0c4f7465398cde43d46618d09e6a8c1ac9d (patch)
tree51e238d7e451a962eced181a83fb7379c70bba24
parentFixed bug where the initial detachstate was not being set properly (diff)
downloadrtems-d627c0c4f7465398cde43d46618d09e6a8c1ac9d.tar.bz2
created. Split getpid() from types.c to allow it to be overridden by
cxe1001 of the ACVC 2.0.1. This allows gnat/rtems to pass the partition tests.
-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;
+}