diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-08-05 13:58:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-08-05 13:58:28 -0300 |
commit | 677d90165ffef728231340c6328e9661824dbc34 (patch) | |
tree | 3338e6f1b0c2f82db84def5751ea418a58fbc31a /lua.h | |
parent | 4244da96bfcf205624487b99b69e9d8dd1857293 (diff) | |
download | lua-677d90165ffef728231340c6328e9661824dbc34.tar.gz lua-677d90165ffef728231340c6328e9661824dbc34.tar.bz2 lua-677d90165ffef728231340c6328e9661824dbc34.zip |
no more generational collection !!!
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.291 2013/06/07 19:01:50 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.292 2013/07/05 14:29:51 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -288,10 +288,7 @@ LUA_API int (lua_status) (lua_State *L); | |||
288 | #define LUA_GCSTEP 5 | 288 | #define LUA_GCSTEP 5 |
289 | #define LUA_GCSETPAUSE 6 | 289 | #define LUA_GCSETPAUSE 6 |
290 | #define LUA_GCSETSTEPMUL 7 | 290 | #define LUA_GCSETSTEPMUL 7 |
291 | #define LUA_GCSETMAJORINC 8 | 291 | #define LUA_GCISRUNNING 8 |
292 | #define LUA_GCISRUNNING 9 | ||
293 | #define LUA_GCGEN 10 | ||
294 | #define LUA_GCINC 11 | ||
295 | 292 | ||
296 | LUA_API int (lua_gc) (lua_State *L, int what, int data); | 293 | LUA_API int (lua_gc) (lua_State *L, int what, int data); |
297 | 294 | ||