2 * D header file for POSIX.
4 * Copyright: Public Domain
5 * License: Public Domain
7 * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
9 module stdc.posix.sys.wait;
11 private import stdc.posix.config;
12 public import stdc.posix.sys.types; // for id_t, pid_t
13 public import stdc.posix.signal; // for siginfo_t (XSI)
14 //public import stdc.posix.resource; // for rusage (XSI)
34 pid_t waitpid(pid_t, int*, int);
44 const __W_CONTINUED = 0xFFFF;
46 extern (D) int __WTERMSIG( int status ) { return status & 0x7F; }
50 // NOTE: These macros assume __USE_BSD is not defined in the relevant
51 // C headers as the parameter definition there is different and
52 // much more complicated.
54 extern (D) int WEXITSTATUS( int status ) { return ( status & 0xFF00 ) >> 8; }
55 extern (D) int WIFCONTINUED( int status ) { return status == __W_CONTINUED; }
56 extern (D) bool WIFEXITED( int status ) { return __WTERMSIG( status ) == 0; }
57 extern (D) bool WIFSIGNALED( int status )
59 return ( cast(byte) ( ( status & 0x7F ) + 1 ) >> 1 ) > 0;
61 extern (D) bool WIFSTOPPED( int status ) { return ( status & 0xFF ) == 0x7F; }
62 extern (D) int WSTOPSIG( int status ) { return WEXITSTATUS( status ); }
63 extern (D) int WTERMSIG( int status ) { return status & 0x7F; }
65 else version( darwin )
72 const _WSTOPPED = 0177;
75 extern (D) int _WSTATUS(int status) { return (status & 0177); }
76 extern (D) int WEXITSTATUS( int status ) { return (status >> 8); }
77 extern (D) int WIFCONTINUED( int status ) { return status == 0x13; }
78 extern (D) bool WIFEXITED( int status ) { return _WSTATUS(status) == 0; }
79 extern (D) bool WIFSIGNALED( int status )
81 return _WSTATUS( status ) != _WSTOPPED && _WSTATUS( status ) != 0;
83 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
84 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
85 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
87 else version( freebsd )
95 const _WSTOPPED = 0177;
98 extern (D) int _WSTATUS(int status) { return (status & 0177); }
99 extern (D) int WEXITSTATUS( int status ) { return (status >> 8); }
100 extern (D) int WIFCONTINUED( int status ) { return status == 0x13; }
101 extern (D) bool WIFEXITED( int status ) { return _WSTATUS(status) == 0; }
102 extern (D) bool WIFSIGNALED( int status )
104 return _WSTATUS( status ) != _WSTOPPED && _WSTATUS( status ) != 0;
106 extern (D) bool WIFSTOPPED( int status ) { return _WSTATUS( status ) == _WSTOPPED; }
107 extern (D) int WSTOPSIG( int status ) { return status >> 8; }
108 extern (D) int WTERMSIG( int status ) { return _WSTATUS( status ); }
112 static assert( false );
116 pid_t waitpid(pid_t, int*, int);
135 int waitid(idtype_t, id_t, siginfo_t*, int);