Files
skynet/lualib-src/lua-memory.c
2019-05-01 20:37:48 +08:00

94 lines
1.4 KiB
C

#define LUA_LIB
#include <lua.h>
#include <lauxlib.h>
#include "malloc_hook.h"
#include "luashrtbl.h"
static int
ltotal(lua_State *L) {
size_t t = malloc_used_memory();
lua_pushinteger(L, (lua_Integer)t);
return 1;
}
static int
lblock(lua_State *L) {
size_t t = malloc_memory_block();
lua_pushinteger(L, (lua_Integer)t);
return 1;
}
static int
ldumpinfo(lua_State *L) {
memory_info_dump();
return 0;
}
static int
ldump(lua_State *L) {
dump_c_mem();
return 0;
}
static int
lexpandshrtbl(lua_State *L) {
int n = luaL_checkinteger(L, 1);
luaS_expandshr(n);
return 0;
}
static int
lcurrent(lua_State *L) {
lua_pushinteger(L, malloc_current_memory());
return 1;
}
static int
ldumpheap(lua_State *L) {
mallctl_cmd("prof.dump");
return 0;
}
static int
lprofactive(lua_State *L) {
bool *pval, active;
if (lua_isnone(L, 1)) {
pval = NULL;
} else {
active = lua_toboolean(L, 1) ? true : false;
pval = &active;
}
bool ret = mallctl_bool("prof.active", pval);
lua_pushboolean(L, ret);
return 1;
}
LUAMOD_API int
luaopen_skynet_memory(lua_State *L) {
luaL_checkversion(L);
luaL_Reg l[] = {
{ "total", ltotal },
{ "block", lblock },
{ "dumpinfo", ldumpinfo },
{ "dump", ldump },
{ "info", dump_mem_lua },
{ "ssinfo", luaS_shrinfo },
{ "ssexpand", lexpandshrtbl },
{ "current", lcurrent },
{ "dumpheap", ldumpheap },
{ "profactive", lprofactive },
{ NULL, NULL },
};
luaL_newlib(L,l);
return 1;
}