diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-15 12:40:17 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-15 12:40:17 +0200 |
commit | 93e418562cf127a9171e87bcd4e9af8e1bfcdae4 (patch) | |
tree | ed57e18edfa1758f3763d7b85c370a8926861ccb /src/xz/hardware.c | |
parent | Updated THANKS. (diff) | |
download | xz-93e418562cf127a9171e87bcd4e9af8e1bfcdae4.tar.xz |
Add lzma_physmem().
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.
Diffstat (limited to 'src/xz/hardware.c')
-rw-r--r-- | src/xz/hardware.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xz/hardware.c b/src/xz/hardware.c index d5f4b9b4..d91b4cee 100644 --- a/src/xz/hardware.c +++ b/src/xz/hardware.c @@ -11,7 +11,6 @@ /////////////////////////////////////////////////////////////////////////////// #include "private.h" -#include "tuklib_physmem.h" #include "tuklib_cpucores.h" @@ -66,7 +65,7 @@ hardware_memlimit_set_percentage(uint32_t percentage) assert(percentage > 0); assert(percentage <= 100); - uint64_t mem = tuklib_physmem(); + uint64_t mem = lzma_physmem(); // If we cannot determine the amount of RAM, use the assumption // defined by the configure script. |