summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/waitpid.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-05 19:23:36 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-05 19:23:36 +0000
commit9281d180d13057917f618c35ef7433d2e4d4dd86 (patch)
treeb497158acdc1a81b93b938a2f76376c88bc7799b /libc/sysdeps/linux/common/waitpid.c
parent775622914fa0a2814c705d25b1a3929002c5c785 (diff)
Completely rearchitected the sysdeps directory.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/common/waitpid.c')
-rw-r--r--libc/sysdeps/linux/common/waitpid.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/waitpid.c b/libc/sysdeps/linux/common/waitpid.c
new file mode 100644
index 000000000..1a7f7ecad
--- /dev/null
+++ b/libc/sysdeps/linux/common/waitpid.c
@@ -0,0 +1,13 @@
+#include <syscall.h>
+#include <sys/types.h>
+#include <sys/wait.h>
+#include <sys/resource.h>
+
+static inline
+_syscall4(__pid_t,wait4,__pid_t,pid,__WAIT_STATUS,status,int,options,struct rusage *,ru)
+
+__pid_t
+waitpid(__pid_t pid, int *wait_stat, int options)
+{
+ return wait4(pid, (__WAIT_STATUS) wait_stat, options, NULL);
+}