From 1355fdca7cb923c93f9011d8e9dcf49e1a67e537 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 15 Feb 2011 00:33:23 -0500 Subject: preparing build system to handle ports - step 1 --- arch/i386/bits/wait.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 arch/i386/bits/wait.h (limited to 'arch/i386/bits/wait.h') diff --git a/arch/i386/bits/wait.h b/arch/i386/bits/wait.h new file mode 100644 index 00000000..ae3f1012 --- /dev/null +++ b/arch/i386/bits/wait.h @@ -0,0 +1,13 @@ +#define WNOHANG 1 +#define WUNTRACED 2 + +#define WSTOPPED 2 +#define WEXITED 4 +#define WCONTINUED 8 +#define WNOWAIT 0x1000000 + +#if defined(__XOPEN_SOURCE) || defined(__GNU_SOURCE) +#define P_ALL 0 +#define P_PID 1 +#define P_PGID 2 +#endif -- cgit v1.2.1