diff options
author | Martin Nowack <martin@se.inf.tu-dresden.de> | 2014-04-24 13:58:03 +0200 |
---|---|---|
committer | Martin Nowack <martin@se.inf.tu-dresden.de> | 2014-04-24 13:58:03 +0200 |
commit | 016120fd8a8a2cac8457b66b6d2a41e0b5093889 (patch) | |
tree | ef75ff1c67049e36d01bd5c798415ccef5257e5e /lib/Support | |
parent | e2799703b08cc1feb8a324bfb04edfeb2c296e57 (diff) | |
download | klee-016120fd8a8a2cac8457b66b6d2a41e0b5093889.tar.gz |
Renamed GetTotalMemoryUsage to GetTotalMallocUsage
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/MemoryUsage.cpp | 2 |
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 |