summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/common/hardware_physmem.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-21 18:31:04 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-21 19:54:44 (GMT)
commit133d42fe59e2f15610afaed287ef80ec4ff6f888 (patch)
treeea0831dc0601b3e91c3881d9f182c085ad4fffe2 /Utilities/cmliblzma/liblzma/common/hardware_physmem.c
parent8510533f0e713abeedf53a737c702d683b636ecb (diff)
parentc289e63491982dd8aed7c6b6f54d390df91aaf95 (diff)
downloadCMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.zip
CMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.tar.gz
CMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.tar.bz2
Merge branch 'liblzma-upstream' into add-liblzma
Diffstat (limited to 'Utilities/cmliblzma/liblzma/common/hardware_physmem.c')
-rw-r--r--Utilities/cmliblzma/liblzma/common/hardware_physmem.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/Utilities/cmliblzma/liblzma/common/hardware_physmem.c b/Utilities/cmliblzma/liblzma/common/hardware_physmem.c
new file mode 100644
index 0000000..7405b65
--- /dev/null
+++ b/Utilities/cmliblzma/liblzma/common/hardware_physmem.c
@@ -0,0 +1,25 @@
+///////////////////////////////////////////////////////////////////////////////
+//
+/// \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();
+}