mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
Fix up sys/select.h test for XPG7.
This commit is contained in:
parent
8500fa8325
commit
4bfc6ab9ae
@ -1,3 +1,7 @@
|
|||||||
|
2010-01-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* conform/data/sys/select.h-data: Fix up for XPG7.
|
||||||
|
|
||||||
2010-01-12 Jakub Jelinek <jakub@redhat.com>
|
2010-01-12 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* posix/sys/wait.h: Don't define W* macros etc. if
|
* posix/sys/wait.h: Don't define W* macros etc. if
|
||||||
|
@ -13,16 +13,18 @@ element {struct timespec} time_t tv_sec
|
|||||||
element {struct timespec} long tv_nsec
|
element {struct timespec} long tv_nsec
|
||||||
|
|
||||||
type fd_set
|
type fd_set
|
||||||
|
#if defined XPG3 || defined XPG4 || defined UNIX98
|
||||||
element fd_set long fds_bits []
|
element fd_set long fds_bits []
|
||||||
|
#endif
|
||||||
|
|
||||||
function-macro void FD_CLR (int, fd_set*)
|
macro FD_CLR
|
||||||
function-macro int FD_ISSET (int, fd_set*)
|
macro FD_ISSET
|
||||||
function-macro void FD_SET (int, fd_set*)
|
macro FD_SET
|
||||||
function-macro void FD_ZERO (fd_set*)
|
macro FD_ZERO
|
||||||
|
|
||||||
macro FD_SETSIZE
|
macro FD_SETSIZE
|
||||||
|
|
||||||
#ifdef XOPEN2K
|
#if defined XOPEN2K || defined POSIX2008
|
||||||
function int pselect (int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*)
|
function int pselect (int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*)
|
||||||
#endif
|
#endif
|
||||||
function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
|
function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
|
||||||
|
Loading…
Reference in New Issue
Block a user