process: Remove use of mallinfo for Musl

This commit is contained in:
klzgrad 2019-11-30 22:37:05 +08:00
parent 814fd95322
commit d275a3f80b

View File

@ -109,6 +109,9 @@ void IncreaseFdLimitTo(unsigned int max_descriptors) {
namespace {
size_t GetMallocUsageMallinfo() {
#if defined(__MUSL__)
return 0;
#else
#if defined(__GLIBC__) && defined(__GLIBC_PREREQ)
#if __GLIBC_PREREQ(2, 33)
#define MALLINFO2_FOUND_IN_LIBC
@ -124,6 +127,7 @@ size_t GetMallocUsageMallinfo() {
#else
return minfo.hblkhd + minfo.arena;
#endif
#endif
}
} // namespace