aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/api/lzma/hardware.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-20liblzma: Highlight liblzma API headers should not be included directly.Jia Tan1-2/+3
This improves the generated Doxygen HTML files to better highlight how to properly use the liblzma API header files.
2022-11-21liblzma: Fix two Doxygen commands in the API headers.Lasse Collin1-1/+1
These were caught by clang -Wdocumentation.
2019-05-11spellingAntoine Cœur1-1/+1
2014-06-18liblzma: Add lzma_cputhreads().Lasse Collin1-0/+14
2010-10-21liblzma: Update the comments in the API headers.Lasse Collin1-2/+1
Adding support for LZMA_FINISH for Index encoding and decoding needed tiny additions to the relevant .c files too.
2009-11-15Add lzma_physmem().Lasse Collin1-0/+51
I had hoped to keep liblzma as purely a compression library as possible (e.g. file I/O will go into a different library), but it seems that applications linking agaisnt liblzma need some way to determine the memory usage limit, and knowing the amount of RAM is one reasonable way to help making such decisions. Thanks to Jonathan Nieder for the original patch.