Fix whitespace issue.
[glibc.git] / conform / data / sys / wait.h-data
blob2fd4c8decf266155f792603eefbe14cbd593969e
1 #ifndef ISO
2 constant WNOHANG
3 constant WUNTRACED
5 macro WEXITSTATUS
6 # if !defined POSIX && !defined POSIX2008
7 macro WIFCONTINUED
8 # endif
9 macro WIFEXITED
10 macro WIFSIGNALED
11 macro WIFSTOPPED
12 macro WSTOPSIG
13 macro WTERMSIG
15 constant WEXITED
16 constant WSTOPPED
17 # if !defined POSIX && !defined POSIX2008
18 constant WCONTINUED
19 # endif
20 constant WNOHANG
21 constant WNOWAIT
23 type idtype_t
25 constant P_ALL
26 constant P_PID
27 constant P_PGID
29 type id_t
31 type siginfo_t
33 element siginfo_t int si_signo
34 element siginfo_t int si_errno
35 element siginfo_t int si_code
36 element siginfo_t pid_t si_pid
37 element siginfo_t uid_t si_uid
38 element siginfo_t {void*} si_addr
39 element siginfo_t int si_status
40 element siginfo_t long si_band
41 element siginfo_t {union sigval} si_value
43 type {struct rusage}
45 element {struct rusage} {struct timeval} ru_utime
46 element {struct rusage} {struct timeval} ru_stime
48 type pid_t
50 function pid_t wait (int*)
51 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
52 function pid_t wait3 (int*, int, struct rusage*)
53 #endif
54 function int waitid (idtype_t, id_t, siginfo_t*, int)
55 function pid_t waitpid (pid_t, int*, int)
57 allow-header signal.h
58 allow-header sys/resource.h
60 allow si_*
61 allow W*
62 allow P_*
63 allow BUS_
64 allow CLD_
65 allow FPE_
66 allow ILL_
67 allow POLL_
68 allow SEGV_
69 allow SI_
70 allow TRAP_
71 allow *_t
72 #endif