diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-08 18:54:56 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-08 18:54:56 +0100 |
commit | faa67b9d90d5ef2c8b5db346649f0d8d06d3e603 (patch) | |
tree | 85fdcd9db00cd00b0ce2e2cc576fa7d7895caae9 | |
parent | 158ead42cf434bb38735bf529c3c61d6ee45e1b0 (diff) | |
parent | b3048f56eba26df10568ae879b7faf0333ab1a38 (diff) | |
download | prosody-faa67b9d90d5ef2c8b5db346649f0d8d06d3e603.tar.gz prosody-faa67b9d90d5ef2c8b5db346649f0d8d06d3e603.zip |
Merge 0.9->trunk
-rw-r--r-- | util-src/pposix.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 8dfd6c75..65f8b4ab 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -622,14 +622,20 @@ int lc_meminfo(lua_State* L) { struct mallinfo info = mallinfo(); lua_newtable(L); + /* This is the total size of memory allocated with sbrk by malloc, in bytes. */ lua_pushinteger(L, info.arena); lua_setfield(L, -2, "allocated"); + /* This is the total size of memory allocated with mmap, in bytes. */ lua_pushinteger(L, 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, info.uordblks); lua_setfield(L, -2, "used"); + /* This is the total size of memory occupied by free (not in use) chunks. */ lua_pushinteger(L, 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, info.keepcost); lua_setfield(L, -2, "returnable"); return 1; |