mirror of https://github.com/rusefi/lua.git
'T.limits' reports some more useful limits
This commit is contained in:
parent
4b2521cd9e
commit
7314acaa80
7
ltests.c
7
ltests.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: ltests.c,v 2.188 2014/10/07 18:29:13 roberto Exp roberto $
|
** $Id: ltests.c,v 2.189 2014/10/25 11:50:46 roberto Exp roberto $
|
||||||
** Internal Module for Debugging of the Lua Implementation
|
** Internal Module for Debugging of the Lua Implementation
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -553,8 +553,11 @@ static int listlocals (lua_State *L) {
|
||||||
static int get_limits (lua_State *L) {
|
static int get_limits (lua_State *L) {
|
||||||
lua_createtable(L, 0, 5);
|
lua_createtable(L, 0, 5);
|
||||||
setnameval(L, "BITS_INT", LUAI_BITSINT);
|
setnameval(L, "BITS_INT", LUAI_BITSINT);
|
||||||
|
setnameval(L, "MAXARG_Ax", MAXARG_Ax);
|
||||||
|
setnameval(L, "MAXARG_Bx", MAXARG_Bx);
|
||||||
|
setnameval(L, "MAXARG_sBx", MAXARG_sBx);
|
||||||
|
setnameval(L, "BITS_INT", LUAI_BITSINT);
|
||||||
setnameval(L, "LFPF", LFIELDS_PER_FLUSH);
|
setnameval(L, "LFPF", LFIELDS_PER_FLUSH);
|
||||||
setnameval(L, "MAXSTACK", MAXSTACK);
|
|
||||||
setnameval(L, "NUM_OPCODES", NUM_OPCODES);
|
setnameval(L, "NUM_OPCODES", NUM_OPCODES);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue