aboutsummaryrefslogtreecommitdiffstats
path: root/src/sort.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2011-01-07maint: suppress some clang scan-build warningsPádraig Brady1-4/+5
2011-01-01maint: update all copyright year number rangesJim Meyering1-1/+1
2010-12-28coreutils: keep lines within 80-column limitsPaul Eggert1-9/+16
2010-12-22sort: minor performance tweak with num_processorsPaul Eggert1-2/+2
2010-12-20maint: fix a typo in sort --parallel help messagePádraig Brady1-1/+1
2010-12-19sort: use at most 8 threads by defaultPádraig Brady1-6/+11
2010-12-16sort: do not generate thousands of subprocesses for 16-way mergePaul Eggert1-13/+21
2010-12-16sort: fix hang with sort --compressPaul Eggert1-79/+80
2010-12-16sort: don't dump core when merging from input twicePaul Eggert1-25/+17
2010-12-14sort: fix very-unlikely buffer overrun when merging to input filePaul Eggert1-3/+2
2010-12-13sort: fix some --compress reaper bugsPaul Eggert1-90/+60
2010-12-11sort: syntax cleanupJim Meyering1-5/+6
2010-12-11sort: integer overflow checks in thread counts, etc.Paul Eggert1-51/+64
2010-12-11sort: preallocate merge tree nodes to heap.Chen Guo1-59/+111
2010-12-11sort: comment fixPaul Eggert1-6/+1
2010-12-11sort: use mutexes, not spinlocks (avoid busy loop on blocked output)Chen Guo1-7/+7
2010-12-03sort: merge_queue -> queuePaul Eggert1-11/+11
2010-12-03sort: clarify queue_check_insertPaul Eggert1-11/+5
2010-12-03sort: fix problems with merge node dest pointerPaul Eggert1-8/+5
2010-12-03sort: simplify write_uniquePaul Eggert1-4/+5
2010-12-03sort: put queue arg firstPaul Eggert1-8/+8
2010-12-03sort: tune struct_merge_node slightlyPaul Eggert1-15/+25
2010-12-03sort: Clarify commentsPaul Eggert1-22/+59
2010-12-01sort: fix bug on 64-bit hosts with at least 32768 processorsPaul Eggert1-1/+1
2010-12-01sort -u: fix a thread-race pointer corruption bugPaul Eggert1-3/+3
2010-10-14bug#7213: [PATCH] sort: fix buffer overrun on 32-bit hosts when warning re ob...Paul Eggert1-1/+1
2010-10-13sort: fix unportable cast of unsigned char * -> char *Paul Eggert1-3/+3
2010-09-20sort: destroy spin locks portablyPaul Eggert1-0/+3
2010-08-10sort, who: prefer free+malloc to realloc when contents are irrelevantPaul Eggert1-2/+4
2010-08-10sort: free/xmalloc rather than xreallocPaul Eggert1-2/+9
2010-08-10sort: avoid gcc warning: explicitly ignore strtold resultJim Meyering1-1/+2
2010-08-08sort: speed up -R with long lines in hard localesPaul Eggert1-5/+13
2010-08-06sort: support all combinations of -d, -f, -i, -R, and -VPaul Eggert1-124/+100
2010-08-05sort: tune and refactor --debug code, and fix minor underlining bugPaul Eggert1-151/+165
2010-08-04sort: -R now uses less memory on long lines with internal NULsPaul Eggert1-51/+116
2010-08-03sort: fix bug in --debug when \0 is followed by \tPaul Eggert1-19/+9
2010-08-02sort: revert recent -h changes and use a more-conservative approachPaul Eggert1-77/+31
2010-07-30sort: -h now handles comparisons such as 6000K vs 5M and 5MiB vs 5MBPaul Eggert1-78/+88
2010-07-27sort: fix --debug display with very large offsetsPaul Eggert1-2/+5
2010-07-26sort: fix bug with EOF at buffer refillPaul Eggert1-1/+1
2010-07-26sort: omit some "inline"sPaul Eggert1-9/+9
2010-07-26sort: don't assume ASCII when parsing K, M, G suffixesPaul Eggert1-1/+5
2010-07-25sort: omit unnecessary mutex unlock+lock; simplify heap accessPaul R. Eggert1-14/+5
2010-07-25sort: omit 'restrict' in doubtful casesPaul R. Eggert1-19/+17
2010-07-25sort: omit unnecessary castsPaul R. Eggert1-8/+7
2010-07-25sort: use more-consistent style with constPaul R. Eggert1-52/+51
2010-07-22fadvise: new module providing a simpler interface to posix_fadvisePádraig Brady1-22/+8
2010-07-19sort: -R no longer disables multithreadingPaul R. Eggert1-53/+27
2010-07-15sort: fix a bug with sort -u and xmemcoll0, and tune keycomparePaul R. Eggert1-5/+7
2010-07-15sort: fix a bug when sorting unterminated linesPádraig Brady1-1/+1