]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sat, 3 Mar 2001 18:23:37 +0000 (18:23 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 3 Mar 2001 18:23:37 +0000 (18:23 +0000)
old/textutils/ChangeLog

index bd706d78a0fa8e016086b4347603f212372cc504..e1d47a9da3667e2880ef0ae9f09ee474eb32e17d 100644 (file)
@@ -1,3 +1,19 @@
+2001-02-25  Paul Eggert  <eggert@twinsun.com>
+
+       * 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  <eggert@twinsun.com>
+
+       * src/sort.c (eolchar, trim_trailing_blanks): Now static.
+
 2001-02-25  Paul Eggert  <eggert@twinsun.com>
 
        'sort' race condition fixes.