diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-04-27 14:33:59 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2009-04-27 14:33:59 +0000 |
commit | 83489168c2447e3fe351dbb302b1026dc9fc512c (patch) | |
tree | 8c0029fbf2d97cd352310c6a793bb15745a24ec4 /posix | |
parent | 51211e710a024163f91ffd5ed29908faa3cd41e7 (diff) |
Updated to fedora-glibc-20090427T1419cvs/fedora-glibc-2_9_90-22
Diffstat (limited to 'posix')
-rw-r--r-- | posix/bits/posix1_lim.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/posix/bits/posix1_lim.h b/posix/bits/posix1_lim.h index 71c58f7605..a0eb4329cb 100644 --- a/posix/bits/posix1_lim.h +++ b/posix/bits/posix1_lim.h @@ -87,9 +87,11 @@ # define _POSIX_OPEN_MAX 16 #endif +#if !defined __USE_XOPEN2K || defined __USE_GNU /* Number of descriptors that a process may examine with `pselect' or `select'. */ -#define _POSIX_FD_SETSIZE _POSIX_OPEN_MAX +# define _POSIX_FD_SETSIZE _POSIX_OPEN_MAX +#endif /* Number of bytes in a pathname. */ #define _POSIX_PATH_MAX 256 @@ -135,15 +137,17 @@ /* Maximum length of a timezone name (element of `tzname'). */ #define _POSIX_TZNAME_MAX 6 +#if !defined __USE_XOPEN2K || defined __USE_GNU /* Maximum number of connections that can be queued on a socket. */ -#define _POSIX_QLIMIT 1 +# define _POSIX_QLIMIT 1 /* Maximum number of bytes that can be buffered on a socket for send or receive. */ -#define _POSIX_HIWAT _POSIX_PIPE_BUF +# define _POSIX_HIWAT _POSIX_PIPE_BUF /* Maximum number of elements in an `iovec' array. */ -#define _POSIX_UIO_MAXIOV 16 +# define _POSIX_UIO_MAXIOV 16 +#endif /* Maximum clock resolution in nanoseconds. */ #define _POSIX_CLOCKRES_MIN 20000000 |