| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** $Id: lstate.h,v 2.82 2012/07/02 13:37:04 roberto Exp $ | 2 ** $Id: lstate.h,v 2.82 2012/07/02 13:37:04 roberto Exp $ |
| 3 ** Global State | 3 ** Global State |
| 4 ** See Copyright Notice in lua.h | 4 ** See Copyright Notice in lua.h |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef lstate_h | 7 #ifndef lstate_h |
| 8 #define lstate_h | 8 #define lstate_h |
| 9 | 9 |
| 10 #include "lua.h" | 10 #include "lua.h" |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 /* actual number of total bytes allocated */ | 218 /* actual number of total bytes allocated */ |
| 219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt) | 219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt) |
| 220 | 220 |
| 221 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt); | 221 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt); |
| 222 LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1); | 222 LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1); |
| 223 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L); | 223 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L); |
| 224 LUAI_FUNC void luaE_freeCI (lua_State *L); | 224 LUAI_FUNC void luaE_freeCI (lua_State *L); |
| 225 | 225 |
| 226 | 226 |
| 227 #endif | 227 #endif |
| 228 | |
| OLD | NEW |