Changeset

12154:760dd1fc3dc1

util.pposix: Use mallinfo2() on glibc 2.33, fix #1649
author Kim Alvefur <zash@zash.se>
date Thu, 06 Jan 2022 18:56:06 +0100
parents 12153:26af75c20163
children 12155:ae5988739990
files util-src/pposix.c
diffstat 1 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/util-src/pposix.c	Thu Jan 06 01:18:35 2022 +0100
+++ b/util-src/pposix.c	Thu Jan 06 18:56:06 2022 +0100
@@ -728,26 +728,33 @@
 
 #ifdef WITH_MALLINFO
 static int lc_meminfo(lua_State *L) {
+#if __GLIBC_PREREQ(2, 33)
+	struct mallinfo2 info = mallinfo2();
+#define MALLINFO_T size_t
+#else
 	struct mallinfo info = mallinfo();
+#define MALLINFO_T unsigned
+#endif
 	lua_createtable(L, 0, 5);
 	/* This is the total size of memory allocated with sbrk by malloc, in bytes. */
-	lua_pushinteger(L, (unsigned)info.arena);
+	lua_pushinteger(L, (MALLINFO_T)info.arena);
 	lua_setfield(L, -2, "allocated");
 	/* This is the total size of memory allocated with mmap, in bytes. */
-	lua_pushinteger(L, (unsigned)info.hblkhd);
+	lua_pushinteger(L, (MALLINFO_T)info.hblkhd);
 	lua_setfield(L, -2, "allocated_mmap");
 	/* This is the total size of memory occupied by chunks handed out by malloc. */
-	lua_pushinteger(L, (unsigned)info.uordblks);
+	lua_pushinteger(L, (MALLINFO_T)info.uordblks);
 	lua_setfield(L, -2, "used");
 	/* This is the total size of memory occupied by free (not in use) chunks. */
-	lua_pushinteger(L, (unsigned)info.fordblks);
+	lua_pushinteger(L, (MALLINFO_T)info.fordblks);
 	lua_setfield(L, -2, "unused");
 	/* This is the size of the top-most releasable chunk that normally borders the
 	   end of the heap (i.e., the high end of the virtual address space's data segment). */
-	lua_pushinteger(L, (unsigned)info.keepcost);
+	lua_pushinteger(L, (MALLINFO_T)info.keepcost);
 	lua_setfield(L, -2, "returnable");
 	return 1;
 }
+#undef MALLINFO_T
 #endif
 
 /*