util-src: Specify size of various tables to be allocated

This commit is contained in:
Kim Alvefur 2017-03-09 01:20:59 +01:00
parent e1a8887ccd
commit 384687ffa4
5 changed files with 7 additions and 7 deletions

View file

@ -100,7 +100,7 @@ int luaopen_util_crand(lua_State *L) {
luaL_checkversion(L);
#endif
lua_newtable(L);
lua_createtable(L, 0, 2);
lua_pushcfunction(L, Lrandom);
lua_setfield(L, -2, "bytes");

View file

@ -134,7 +134,7 @@ int luaopen_util_net(lua_State *L) {
{ NULL, NULL }
};
lua_newtable(L);
lua_createtable(L, 0, 1);
luaL_setfuncs(L, exports, 0);
return 1;
}

View file

@ -660,7 +660,7 @@ int lc_uname(lua_State *L) {
return 2;
}
lua_newtable(L);
lua_createtable(L, 0, 6);
lua_pushstring(L, uname_info.sysname);
lua_setfield(L, -2, "sysname");
lua_pushstring(L, uname_info.nodename);
@ -709,7 +709,7 @@ int lc_setenv(lua_State *L) {
#ifdef WITH_MALLINFO
int lc_meminfo(lua_State *L) {
struct mallinfo info = mallinfo();
lua_newtable(L);
lua_createtable(L, 0, 5);
/* This is the total size of memory allocated with sbrk by malloc, in bytes. */
lua_pushinteger(L, info.arena);
lua_setfield(L, -2, "allocated");

View file

@ -187,7 +187,7 @@ int luaopen_util_ringbuffer(lua_State *L) {
lua_pushcfunction(L, rb_length);
lua_setfield(L, -2, "__len");
lua_newtable(L); /* __index */
lua_createtable(L, 0, 7); /* __index */
{
lua_pushcfunction(L, rb_find);
lua_setfield(L, -2, "find");
@ -207,7 +207,7 @@ int luaopen_util_ringbuffer(lua_State *L) {
lua_setfield(L, -2, "__index");
}
lua_newtable(L);
lua_createtable(L, 0, 1);
lua_pushcfunction(L, rb_new);
lua_setfield(L, -2, "new");
return 1;

View file

@ -24,7 +24,7 @@ int luaopen_util_table(lua_State *L) {
#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);
#endif
lua_newtable(L);
lua_createtable(L, 0, 2);
lua_pushcfunction(L, Lcreate_table);
lua_setfield(L, -2, "create");
lua_pushcfunction(L, Lpack);