From: Jim Meyering Date: Tue, 21 Mar 1995 03:50:10 +0000 (+0000) Subject: merge with 1.11.e X-Git-Tag: textutils-1_12_1~246 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80fab638f1136ae9939409b48c2297b725745c00;p=thirdparty%2Fcoreutils.git merge with 1.11.e --- diff --git a/src/sort.c b/src/sort.c index a74f05992b..3c0b3a5da3 100644 --- a/src/sort.c +++ b/src/sort.c @@ -100,17 +100,17 @@ static struct month /* Initial buffer size for in core sorting. Will not grow unless a line longer than this is seen. */ -static int sortalloc = 4 * 1024 * 1024; +static int sortalloc = 512 * 1024; /* Initial buffer size for in core merge buffers. Bear in mind that up to NMERGE * mergealloc bytes may be allocated for merge buffers. */ -static int mergealloc = 64 * 1024; +static int mergealloc = 16 * 1024; /* Guess of average line length. */ static int linelength = 30; /* Maximum number of elements for the array(s) of struct line's, in bytes. */ -#define LINEALLOC (1024 * 1024) +#define LINEALLOC (256 * 1024) /* Prefix for temporary file names. */ static char *temp_file_prefix;