mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
process: Remove use of mallinfo under Musl
This commit is contained in:
parent
c2872fb89c
commit
e71831202b
@ -110,6 +110,8 @@ size_t ProcessMetrics::GetMallocUsage() {
|
|||||||
malloc_statistics_t stats = {0};
|
malloc_statistics_t stats = {0};
|
||||||
malloc_zone_statistics(nullptr, &stats);
|
malloc_zone_statistics(nullptr, &stats);
|
||||||
return stats.size_in_use;
|
return stats.size_in_use;
|
||||||
|
#elif defined(OS_LINUX) && defined(__UCLIBC__)
|
||||||
|
return 0;
|
||||||
#elif defined(OS_LINUX) || defined(OS_ANDROID)
|
#elif defined(OS_LINUX) || defined(OS_ANDROID)
|
||||||
struct mallinfo minfo = mallinfo();
|
struct mallinfo minfo = mallinfo();
|
||||||
#if BUILDFLAG(USE_TCMALLOC)
|
#if BUILDFLAG(USE_TCMALLOC)
|
||||||
|
Loading…
Reference in New Issue
Block a user