musl: base: Remove use of mallinfo
parent
bd67dc6583
commit
56ee09f800
|
@ -112,6 +112,9 @@ void IncreaseFdLimitTo(unsigned int max_descriptors) {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
size_t GetMallocUsageMallinfo() {
|
size_t GetMallocUsageMallinfo() {
|
||||||
|
#if defined(__MUSL__)
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
#if defined(__GLIBC__) && defined(__GLIBC_PREREQ)
|
#if defined(__GLIBC__) && defined(__GLIBC_PREREQ)
|
||||||
#if __GLIBC_PREREQ(2, 33)
|
#if __GLIBC_PREREQ(2, 33)
|
||||||
#define MALLINFO2_FOUND_IN_LIBC
|
#define MALLINFO2_FOUND_IN_LIBC
|
||||||
|
@ -123,6 +126,7 @@ size_t GetMallocUsageMallinfo() {
|
||||||
#endif
|
#endif
|
||||||
#undef MALLINFO2_FOUND_IN_LIBC
|
#undef MALLINFO2_FOUND_IN_LIBC
|
||||||
return checked_cast<size_t>(minfo.hblkhd + minfo.arena);
|
return checked_cast<size_t>(minfo.hblkhd + minfo.arena);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
|
@ -370,6 +370,7 @@ bool MallocDumpProvider::OnMemoryDump(const MemoryDumpArgs& args,
|
||||||
&allocated_objects_count);
|
&allocated_objects_count);
|
||||||
#elif BUILDFLAG(IS_FUCHSIA)
|
#elif BUILDFLAG(IS_FUCHSIA)
|
||||||
// TODO(fuchsia): Port, see https://crbug.com/706592.
|
// TODO(fuchsia): Port, see https://crbug.com/706592.
|
||||||
|
#elif defined(__MUSL__)
|
||||||
#else
|
#else
|
||||||
ReportMallinfoStats(/*pmd=*/nullptr, &total_virtual_size, &resident_size,
|
ReportMallinfoStats(/*pmd=*/nullptr, &total_virtual_size, &resident_size,
|
||||||
&allocated_objects_size, &allocated_objects_count);
|
&allocated_objects_size, &allocated_objects_count);
|
||||||
|
|
Loading…
Reference in New Issue