mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.table, Makefile: New C module that allows pre-allocation of tables to improve performance and decrease memory fragmentation
This commit is contained in:
parent
2f531bc782
commit
f9a6cc2cc9
2 changed files with 16 additions and 2 deletions
|
@ -14,9 +14,9 @@ CFLAGS+=-ggdb
|
|||
.PHONY: all install clean
|
||||
.SUFFIXES: .c .o .so
|
||||
|
||||
all: encodings.so hashes.so net.so pposix.so signal.so
|
||||
all: encodings.so hashes.so net.so pposix.so signal.so table.so
|
||||
|
||||
install: encodings.so hashes.so net.so pposix.so signal.so
|
||||
install: encodings.so hashes.so net.so pposix.so signal.so table.so
|
||||
install *.so ../util/
|
||||
|
||||
clean:
|
||||
|
|
14
util-src/table.c
Normal file
14
util-src/table.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include <lua.h>
|
||||
#include <lauxlib.h>
|
||||
|
||||
static int Lcreate_table(lua_State* L) {
|
||||
lua_createtable(L, luaL_checkinteger(L, 1), luaL_checkinteger(L, 2));
|
||||
return 1;
|
||||
}
|
||||
|
||||
int luaopen_util_table(lua_State *L) {
|
||||
lua_newtable(L);
|
||||
lua_pushcfunction(L, Lcreate_table);
|
||||
lua_setfield(L, -2, "create");
|
||||
return 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue