1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

* NEWS: sort temp file compression: tweak wording.

* src/sort.c (struct sortfile) [name]: Declare member to be const.
This commit is contained in:
Jim Meyering
2007-01-24 00:22:45 +01:00
parent f33168da95
commit 1f7d56fda5
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2007-01-24 Jim Meyering <jim@meyering.net>
* NEWS: sort temp file compression: tweak wording.
* src/sort.c (struct sortfile) [name]: Declare member to be const.
2007-01-21 Jim Meyering <jim@meyering.net>
* src/sort.c (MAX_FORK_RETRIES_COMPRESS, MAX_FORK_RETRIES_DECOMPRESS):

5
NEWS
View File

@@ -31,8 +31,9 @@ GNU coreutils NEWS -*- outline -*-
** New features
sort can now compresses temporary files to improve performance of
very large sorts.
By default, sort usually compresses each temporary file it writes.
When sorting very large inputs, this can result in sort using far
less temporary disk space and in improved performance.
* Noteworthy changes in release 6.7 (2006-12-08) [stable]

View File

@@ -459,7 +459,7 @@ static struct tempnode *volatile *temptail = &temphead;
struct sortfile
{
char *name;
char const *name;
pid_t pid; /* If compressed, the pid of compressor, else zero */
};