From: Jim Meyering Date: Sat, 3 Mar 2001 18:23:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: TEXTUTILS-2_0_12~23 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5514c4792b2a74ff5867dd01b19a51eb1bcca364;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index bd706d78a0..e1d47a9da3 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,19 @@ +2001-02-25 Paul Eggert + + * src/sort.c: Tune allocation and comparison of nodes + representing temp files. This improved CPU performance of + 'sort -S 1 *.[ch]' by 17% on my host. + + (struct tempnode): name member now uses struct hack. + (temphead): Now a pointer, not a structure. All uses changed. + (create_temp_file): Allocate node using struct hack. + (zaptemp): Free node using struct hack. Use pointer comparison, not + string comparison. + +2001-02-25 Paul Eggert + + * src/sort.c (eolchar, trim_trailing_blanks): Now static. + 2001-02-25 Paul Eggert 'sort' race condition fixes.