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