about summary refs log tree commit diff homepage
path: root/lib/Support
diff options
context:
space:
mode:
authorMartin Nowack <martin@se.inf.tu-dresden.de>2014-04-24 13:58:03 +0200
committerMartin Nowack <martin@se.inf.tu-dresden.de>2014-04-24 13:58:03 +0200
commit016120fd8a8a2cac8457b66b6d2a41e0b5093889 (patch)
treeef75ff1c67049e36d01bd5c798415ccef5257e5e /lib/Support
parente2799703b08cc1feb8a324bfb04edfeb2c296e57 (diff)
downloadklee-016120fd8a8a2cac8457b66b6d2a41e0b5093889.tar.gz
Renamed GetTotalMemoryUsage to GetTotalMallocUsage
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/MemoryUsage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/MemoryUsage.cpp b/lib/Support/MemoryUsage.cpp
index 94cee79e..676ce307 100644
--- a/lib/Support/MemoryUsage.cpp
+++ b/lib/Support/MemoryUsage.cpp
@@ -12,7 +12,7 @@
 
 using namespace klee;
 
-size_t util::GetTotalMemoryUsage() {
+size_t util::GetTotalMallocUsage() {
   struct mallinfo mi = ::mallinfo();
   // The malloc implementation in glibc (pmalloc2)
   // does not include mmap()'ed memory in mi.uordblks