diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-31 22:17:59 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-31 22:17:59 +0000 |
commit | b12634bf80d28ed8dc28497c3e172a324f089d8f (patch) | |
tree | 6f478ee262b86701181d6e5630e8e69831770020 /llvm/lib/Support | |
parent | 368c4d0e1bae4b71b5c119ca28d96b87398e5976 (diff) | |
download | bcm5719-llvm-b12634bf80d28ed8dc28497c3e172a324f089d8f.tar.gz bcm5719-llvm-b12634bf80d28ed8dc28497c3e172a324f089d8f.zip |
Remove an unused function in the old Process interface.
llvm-svn: 171327
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Unix/Process.inc | 20 | ||||
-rw-r--r-- | llvm/lib/Support/Windows/Process.inc | 8 |
2 files changed, 0 insertions, 28 deletions
diff --git a/llvm/lib/Support/Unix/Process.inc b/llvm/lib/Support/Unix/Process.inc index b83f5079ce0..e96d37ce563 100644 --- a/llvm/lib/Support/Unix/Process.inc +++ b/llvm/lib/Support/Unix/Process.inc @@ -92,26 +92,6 @@ size_t Process::GetMallocUsage() { #endif } -size_t -Process::GetTotalMemoryUsage() -{ -#if defined(HAVE_MALLINFO) - struct mallinfo mi = ::mallinfo(); - return mi.uordblks + mi.hblkhd; -#elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H) - malloc_statistics_t Stats; - malloc_zone_statistics(malloc_default_zone(), &Stats); - return Stats.size_allocated; // darwin -#elif defined(HAVE_GETRUSAGE) && !defined(__HAIKU__) - struct rusage usage; - ::getrusage(RUSAGE_SELF, &usage); - return usage.ru_maxrss; -#else -#warning Cannot get total memory size on this platform - return 0; -#endif -} - void Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time) diff --git a/llvm/lib/Support/Windows/Process.inc b/llvm/lib/Support/Windows/Process.inc index 9ad7917714c..d3a0c94e1ce 100644 --- a/llvm/lib/Support/Windows/Process.inc +++ b/llvm/lib/Support/Windows/Process.inc @@ -78,14 +78,6 @@ Process::GetMallocUsage() return size; } -size_t -Process::GetTotalMemoryUsage() -{ - PROCESS_MEMORY_COUNTERS pmc; - GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc)); - return pmc.PagefileUsage; -} - void Process::GetTimeUsage( TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time) |