Lines Matching defs:lua_State
154 struct lua_State { struct
156 lu_byte status;
157 StkId top; /* first free slot in the stack */
158 global_State *l_G;
159 CallInfo *ci; /* call info for current function */
160 const Instruction *oldpc; /* last pc traced */
161 StkId stack_last; /* last free slot in the stack */
162 StkId stack; /* stack base */
163 int stacksize;
164 unsigned short nny; /* number of non-yieldable calls in stack */
165 unsigned short nCcalls; /* number of nested C calls */
166 lu_byte hookmask;
167 lu_byte allowhook;
168 lu_byte runerror; /* handling a runtime error */
169 int basehookcount;
170 int hookcount;
194 struct lua_State th; /* thread */ argument