mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Replace mallinfo with mallinfo2 on supported systems
`mallinfo` is deprecated since glibc 2.33 and has been replaced by mallinfo2. The deprecation causes building the server to fail if glibc version is > 2.33. Check if mallinfo2 exist on the system and use it instead.
This commit is contained in:
committed by
Daniel Black
parent
36a05268e7
commit
48141f3c17
@ -616,8 +616,12 @@ Next alarm time: %lu\n",
|
||||
(ulong)alarm_info.next_alarm_time);
|
||||
#endif
|
||||
display_table_locks();
|
||||
#ifdef HAVE_MALLINFO
|
||||
struct mallinfo info= mallinfo();
|
||||
#if defined(HAVE_MALLINFO2)
|
||||
struct mallinfo2 info = mallinfo2();
|
||||
#elif defined(HAVE_MALLINFO)
|
||||
struct mallinfo info= mallinfo();
|
||||
#endif
|
||||
#if defined(HAVE_MALLINFO) || defined(HAVE_MALLINFO2)
|
||||
char llbuff[10][22];
|
||||
printf("\nMemory status:\n\
|
||||
Non-mmapped space allocated from system: %s\n\
|
||||
|
Reference in New Issue
Block a user