mirror of
https://git.tukaani.org/xz.git
synced 2025-10-17 22:53:29 +00:00
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.
26 lines
682 B
C
26 lines
682 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
/// \file hardware_physmem.c
|
|
/// \brief Get the total amount of physical memory (RAM)
|
|
//
|
|
// Author: Jonathan Nieder
|
|
//
|
|
// This file has been put into the public domain.
|
|
// You can do whatever you want with this file.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "common.h"
|
|
|
|
#include "tuklib_physmem.h"
|
|
|
|
|
|
extern LZMA_API(uint64_t)
|
|
lzma_physmem(void)
|
|
{
|
|
// It is simpler to make lzma_physmem() a wrapper for
|
|
// tuklib_physmem() than to hack appropriate symbol visiblity
|
|
// support for the tuklib modules.
|
|
return tuklib_physmem();
|
|
}
|