155a156,164
> // For select().
> // linux-3.14-src/include/uapi/linux/posix_types.h
> struct fd_set{
> #ifndef LINUX__FD_SETSIZE
> #define LINUX__FD_SETSIZE 1024
> unsigned long fds_bits[LINUX__FD_SETSIZE / (8 * sizeof(long))];
> #endif
> };
>
267a277,284
>
> // linux-3.13-src/include/uapi/linux/wait.h
> static const unsigned TGT_WNOHANG = 0x00000001;
> static const unsigned TGT_WUNTRACED = 0x00000002;
> static const unsigned TGT_WSTOPPED = TGT_WUNTRACED;
> static const unsigned TGT_WEXITED = 0x00000004;
> static const unsigned TGT_WCONTINUED = 0x00000008;
> static const unsigned TGT_WNOWAIT = 0x01000000;