mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-03 13:53:37 +03:00
process: Remove use of mallinfo under Musl
This commit is contained in:
parent
44c09a4e59
commit
b98df63f4e
1 changed files with 2 additions and 0 deletions
|
@ -110,6 +110,8 @@ size_t ProcessMetrics::GetMallocUsage() {
|
|||
malloc_statistics_t stats = {0};
|
||||
malloc_zone_statistics(nullptr, &stats);
|
||||
return stats.size_in_use;
|
||||
#elif defined(OS_LINUX) && defined(__UCLIBC__)
|
||||
return 0;
|
||||
#elif defined(OS_LINUX) || defined(OS_ANDROID)
|
||||
struct mallinfo minfo = mallinfo();
|
||||
#if BUILDFLAG(USE_TCMALLOC)
|
||||
|
|
Loading…
Add table
Reference in a new issue