diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-14 12:19:42 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-14 12:19:42 -0200 |
commit | 5be517602e5334573297fe8d421a92eb0184ce86 (patch) | |
tree | a3253a42f85b2aff30ed46e840e8e547f6746a94 /lua.h | |
parent | d2bda8046c1061c353f9e787e987772b9f96099b (diff) | |
download | lua-5be517602e5334573297fe8d421a92eb0184ce86.tar.gz lua-5be517602e5334573297fe8d421a92eb0184ce86.tar.bz2 lua-5be517602e5334573297fe8d421a92eb0184ce86.zip |
no more generational collector (and no more `noinc' mode)
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.198 2005/01/07 19:53:32 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.199 2005/01/10 17:31:50 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
@@ -227,7 +227,7 @@ LUA_API int (lua_status) (lua_State *L); | |||
227 | #define LUA_GCCOUNT 3 | 227 | #define LUA_GCCOUNT 3 |
228 | #define LUA_GCSTEP 4 | 228 | #define LUA_GCSTEP 4 |
229 | #define LUA_GCSETPACE 5 | 229 | #define LUA_GCSETPACE 5 |
230 | #define LUA_GCSETINCMODE 6 | 230 | #define LUA_GCSETSTEPMUL 6 |
231 | 231 | ||
232 | LUA_API int (lua_gc) (lua_State *L, int what, int data); | 232 | LUA_API int (lua_gc) (lua_State *L, int what, int data); |
233 | 233 | ||