summaryrefslogtreecommitdiff
path: root/src/du.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-03-04 23:02:08 +0000
committerJim Meyering <jim@meyering.net>2003-03-04 23:02:08 +0000
commit47fa65c6487c36d8e161d731497e4ca10914ced2 (patch)
tree4806d30a77a6c35fed737ccfa6ce10453734a56b /src/du.c
parent68b5e00c0c7e4da815fb245c4a90b0971866678a (diff)
downloadcoreutils-47fa65c6487c36d8e161d731497e4ca10914ced2.tar.xz
(MAX_N_DESCRIPTORS): Use 3 * UTILS_OPEN_MAX / 4.
Diffstat (limited to 'src/du.c')
-rw-r--r--src/du.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/du.c b/src/du.c
index afc3e0eae..00120c611 100644
--- a/src/du.c
+++ b/src/du.c
@@ -54,10 +54,7 @@
/* The maximum number of simultaneously open file handles that
may be used by ftw. */
-#define MAX_N_DESCRIPTORS \
- (UTILS_OPEN_MAX < 20 \
- ? UTILS_OPEN_MAX \
- : UTILS_OPEN_MAX - 10)
+#define MAX_N_DESCRIPTORS (3 * UTILS_OPEN_MAX / 4)
/* Hash structure for inode and device numbers. The separate entry
structure makes it easier to rehash "in place". */