2.9
[glibc/nacl-glibc.git] / include / sys / wait.h
blobefabd0cc45630af292cd1d80e7ef17f29a64a8af
1 #ifndef _SYS_WAIT_H
2 #include <posix/sys/wait.h>
4 /* Now define the internal interfaces. */
5 extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
6 int __options);
7 libc_hidden_proto (__waitpid)
8 extern int __waitid (idtype_t idtype, id_t id, siginfo_t *infop, int options);
10 extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
11 extern __pid_t __libc_wait (int *__stat_loc);
12 extern __pid_t __wait (__WAIT_STATUS __stat_loc);
13 extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
14 int __options, struct rusage * __usage);
15 extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
16 int __options, struct rusage *__usage)
17 attribute_hidden;
18 #endif