]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add getpid.
authorRoland McGrath <roland@hack.frob.com>
Thu, 2 May 2013 20:37:39 +0000 (13:37 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 2 May 2013 20:37:39 +0000 (13:37 -0700)
sysdeps/nacl/getpid.c [new file with mode: 0644]
sysdeps/nacl/nacl-interface-list.h

diff --git a/sysdeps/nacl/getpid.c b/sysdeps/nacl/getpid.c
new file mode 100644 (file)
index 0000000..4523988
--- /dev/null
@@ -0,0 +1,32 @@
+/* Get the process ID of the calling process.  NaCl version.
+   Copyright (C) 2013 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include <errno.h>
+#include <unistd.h>
+#include <nacl-interfaces.h>
+
+/* Get the process ID of the calling process.  */
+pid_t
+__getpid (void)
+{
+  int pid;
+  return NACL_CALL (__nacl_irt_dev_getpid.getpid (&pid), pid);
+}
+libc_hidden_def (__getpid)
+weak_alias (__getpid, getpid)
+libc_hidden_weak (getpid)
index 880770c7a56bed3e1451805e6a145b3293dc2fa4..6b96dfa555474b6cf4c43bbc070f7324797e05fe 100644 (file)
@@ -10,3 +10,4 @@ NACL_MANDATORY_INTERFACE (NACL_IRT_SEM_v0_1, nacl_irt_sem)
 NACL_MANDATORY_INTERFACE (NACL_IRT_TLS_v0_1, nacl_irt_tls)
 NACL_MANDATORY_INTERFACE (NACL_IRT_RESOURCE_OPEN_v0_1, nacl_irt_resource_open)
 NACL_OPTIONAL_INTERFACE (NACL_IRT_CLOCK_v0_1, nacl_irt_clock)
+NACL_OPTIONAL_INTERFACE (NACL_IRT_DEV_GETPID_v0_1, nacl_irt_dev_getpid)