Merge remote-tracking branch 'Icantjuddle/fix_deprexated_mallinfo_call'

This commit is contained in:
Maxime Coste 2021-04-19 20:56:55 +10:00
commit f7be47fb95

View File

@ -1448,7 +1448,9 @@ const CommandDesc debug_cmd = {
}
write_to_debug_buffer({});
write_to_debug_buffer(format(" Total: {}", total));
#if defined(__GLIBC__) || defined(__CYGWIN__)
#if defined(__GLIBC__) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 33))
write_to_debug_buffer(format(" Malloced: {}", mallinfo2().uordblks));
#else if defined(__GLIBC__) || defined(__CYGWIN__)
write_to_debug_buffer(format(" Malloced: {}", mallinfo().uordblks));
#endif
}