mirror of https://github.com/rusefi/lua.git
detail (comment)
This commit is contained in:
parent
5bd8d388de
commit
6710a2b0ef
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lobject.h,v 2.130 2017/11/07 13:25:26 roberto Exp roberto $
|
** $Id: lobject.h,v 2.131 2017/11/23 19:29:04 roberto Exp roberto $
|
||||||
** Type definitions for Lua objects
|
** Type definitions for Lua objects
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -446,7 +446,7 @@ typedef struct AbsLineInfo {
|
||||||
*/
|
*/
|
||||||
typedef struct Proto {
|
typedef struct Proto {
|
||||||
CommonHeader;
|
CommonHeader;
|
||||||
lu_byte numparams; /* number of fixed parameters */
|
lu_byte numparams; /* number of fixed (named) parameters */
|
||||||
lu_byte is_vararg;
|
lu_byte is_vararg;
|
||||||
lu_byte maxstacksize; /* number of registers needed by this function */
|
lu_byte maxstacksize; /* number of registers needed by this function */
|
||||||
lu_byte cachemiss; /* count for successive misses for 'cache' field */
|
lu_byte cachemiss; /* count for successive misses for 'cache' field */
|
||||||
|
|
Loading…
Reference in New Issue