diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-18 05:22:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-18 05:22:55 +0000 |
commit | 89ffa8a88378b50a4fa9ad4084a4de3ef431777d (patch) | |
tree | 3d1956a54d07eef6a60fcafe7d11de13ff5493a8 | |
parent | a9c464ab1b027f8b4308e3b4a03d44fdaabf9609 (diff) | |
download | glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.tar glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.tar.gz glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.tar.bz2 glibc-89ffa8a88378b50a4fa9ad4084a4de3ef431777d.zip |
Update.
* sysdeps/unix/sysv/linux/alpha/fpathconf.c: Define and use
LINUX_LINK_MAX.
* sysdeps/unix/sysv/linux/alpha/pathconf.c: Likewise.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/fpathconf.c | 10 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/pathconf.c | 4 |
3 files changed, 12 insertions, 6 deletions
@@ -1,6 +1,8 @@ 2000-06-17 Ulrich Drepper <drepper@redhat.com> - * sysdeps/unix/sysv/linux/alpha/pathconf.c: Define LINK_MAX. + * sysdeps/unix/sysv/linux/alpha/fpathconf.c: Define and use + LINUX_LINK_MAX. + * sysdeps/unix/sysv/linux/alpha/pathconf.c: Likewise. * locale/programs/ld-ctype.c (ctype_output): Really write out mboutdigits information. diff --git a/sysdeps/unix/sysv/linux/alpha/fpathconf.c b/sysdeps/unix/sysv/linux/alpha/fpathconf.c index b822daaf39..235c02c8f8 100644 --- a/sysdeps/unix/sysv/linux/alpha/fpathconf.c +++ b/sysdeps/unix/sysv/linux/alpha/fpathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,6 +24,10 @@ #include <linux_fsinfo.h> + +/* The Linux kernel header mentioned this as a kind of generic value. */ +#define LINUX_LINK_MAX 127 + static long int default_fpathconf (int fd, int name); /* Get file-specific information about descriptor FD. */ @@ -60,7 +64,7 @@ __fpathconf (fd, name) /* Determine the filesystem type. */ if (__fstatfs (fd, &fsbuf) < 0) /* not possible, return the default value. */ - return LINK_MAX; + return LINUX_LINK_MAX; switch (fsbuf.f_type) { @@ -90,7 +94,7 @@ __fpathconf (fd, name) return UFS_LINK_MAX; default: - return LINK_MAX; + return LINUX_LINK_MAX; } } diff --git a/sysdeps/unix/sysv/linux/alpha/pathconf.c b/sysdeps/unix/sysv/linux/alpha/pathconf.c index df5d72ab5e..be5e938783 100644 --- a/sysdeps/unix/sysv/linux/alpha/pathconf.c +++ b/sysdeps/unix/sysv/linux/alpha/pathconf.c @@ -57,7 +57,7 @@ __pathconf (const char *path, int name) /* Determine the filesystem type. */ if (__statfs (path, &fsbuf) < 0) /* not possible, return the default value. */ - return LINK_MAX; + return LINUX_LINK_MAX; switch (fsbuf.f_type) { @@ -87,7 +87,7 @@ __pathconf (const char *path, int name) return UFS_LINK_MAX; default: - return LINK_MAX; + return LINUX_LINK_MAX; } } |