From d627c0c4f7465398cde43d46618d09e6a8c1ac9d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 10 Mar 1997 16:57:08 +0000 Subject: 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. --- c/src/exec/posix/src/getpid.c | 22 ++++++++++++++++++++++ cpukit/posix/src/getpid.c | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 c/src/exec/posix/src/getpid.c create mode 100644 cpukit/posix/src/getpid.c 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 +#include +#include +#include + +#include +#include +#include + +/*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 +#include +#include +#include + +#include +#include +#include + +/*PAGE + * + * 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83 + */ + +pid_t getpid( void ) +{ + return _Objects_Local_node; +} -- cgit v1.2.3