|
Packit |
6c4009 |
#ifndef _SYS_WAIT_H
|
|
Packit |
6c4009 |
#include <posix/sys/wait.h>
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
#ifndef _ISOMAC
|
|
Packit |
6c4009 |
/* Now define the internal interfaces. */
|
|
Packit |
6c4009 |
extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
|
|
Packit |
6c4009 |
int __options);
|
|
Packit |
6c4009 |
libc_hidden_proto (__waitpid)
|
|
Packit |
6c4009 |
extern int __waitid (idtype_t idtype, id_t id, siginfo_t *infop, int options);
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
extern __pid_t __libc_wait (int *__stat_loc);
|
|
Packit |
6c4009 |
extern __pid_t __wait (int *__stat_loc);
|
|
Packit |
6c4009 |
extern __pid_t __wait3 (int *__stat_loc,
|
|
Packit |
6c4009 |
int __options, struct rusage * __usage);
|
|
Packit |
6c4009 |
extern __pid_t __wait4 (__pid_t __pid, int *__stat_loc,
|
|
Packit |
6c4009 |
int __options, struct rusage *__usage)
|
|
Packit |
6c4009 |
attribute_hidden;
|
|
Packit |
6c4009 |
#endif
|
|
Packit |
6c4009 |
#endif
|