mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 13:26:12 +03:00
process: Remove use of mallinfo for Musl
This commit is contained in:
parent
f2d692cb06
commit
846505f507
@ -111,6 +111,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
|
||||||
@ -122,6 +125,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
|
||||||
|
Loading…
Reference in New Issue
Block a user