diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-25 10:04:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-25 10:04:35 +0000 |
commit | 2da161d47ec70b963b50bcce16e63c67bc9b0706 (patch) | |
tree | 0290b44b610c58035684a60ff325a4433b8cd858 /bits | |
parent | 7287c36dd8896ba1ddf72b0e5dc4b7baebee1b60 (diff) | |
download | glibc-2da161d47ec70b963b50bcce16e63c67bc9b0706.tar.gz glibc-2da161d47ec70b963b50bcce16e63c67bc9b0706.tar.xz glibc-2da161d47ec70b963b50bcce16e63c67bc9b0706.zip |
Update.
* sysdeps/generic/bits/confname.h: Define _PC_REC_INCR_XFER_SIZE, _PC_REC_MAX_XFER_SIZE, _PC_REC_MIN_XFER_SIZE, and _PC_REC_XFER_ALIGN. * sysdeps/posix/pathconf.c (__pathconf): Implement handling of _PC_REC_INCR_XFER_SIZE, _PC_REC_MAX_XFER_SIZE, _PC_REC_MIN_XFER_SIZE, and _PC_REC_XFER_ALIGN.
Diffstat (limited to 'bits')
-rw-r--r-- | bits/confname.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bits/confname.h b/bits/confname.h index a783fc0cd8..6c3bd7fc2a 100644 --- a/bits/confname.h +++ b/bits/confname.h @@ -50,8 +50,16 @@ enum #define _PC_PRIO_IO _PC_PRIO_IO _PC_SOCK_MAXBUF, #define _PC_SOCK_MAXBUF _PC_SOCK_MAXBUF - _PC_FILESIZEBITS + _PC_FILESIZEBITS, #define _PC_FILESIZEBITS _PC_FILESIZEBITS + _PC_REC_INCR_XFER_SIZE, +#define _PC_REC_INCR_XFER_SIZE _PC_REC_INCR_XFER_SIZE + _PC_REC_MAX_XFER_SIZE, +#define _PC_REC_MAX_XFER_SIZE _PC_REC_MAX_XFER_SIZE + _PC_REC_MIN_XFER_SIZE, +#define _PC_REC_MIN_XFER_SIZE _PC_REC_MIN_XFER_SIZE + _PC_REC_XFER_ALIGN +#define _PC_REC_XFER_ALIGN _PC_REC_XFER_ALIGN }; /* Values for the argument to `sysconf'. */ |