musl/include/sys/wait.h

33 lines
557 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#ifndef _SYS_WAIT_H
#define _SYS_WAIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <signal.h>
2011-02-12 05:22:29 +00:00
#define __NEED_pid_t
#define __NEED_id_t
#define __NEED_siginfo_t
#include <bits/alltypes.h>
typedef int idtype_t;
pid_t wait (int *);
int waitid (idtype_t, id_t, siginfo_t *, int);
pid_t waitpid (pid_t, int *, int );
2011-02-19 07:26:11 +00:00
#ifdef _GNU_SOURCE
#include <sys/resource.h>
pid_t wait3 (int *, int, struct rusage *);
pid_t wait4 (pid_t, int *, int, struct rusage *);
#endif
2011-02-12 05:22:29 +00:00
#include <bits/wait.h>
#include <bits/wexitstatus.h>
#ifdef __cplusplus
}
#endif
#endif