diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-13 10:15:11 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-13 10:15:11 -0200 |
commit | c6254dceffca200e4111f28af4230b6c892ec0d6 (patch) | |
tree | c9a122ae3c1d28cad4d9f8ed5578a8be18d0a27d /lua.h | |
parent | a56d889f7225a3cfdfa6dfeb55db2b4ae22f1572 (diff) | |
download | lua-c6254dceffca200e4111f28af4230b6c892ec0d6.tar.gz lua-c6254dceffca200e4111f28af4230b6c892ec0d6.tar.bz2 lua-c6254dceffca200e4111f28af4230b6c892ec0d6.zip |
a different option for the GC
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.195 2004/12/01 15:50:18 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.196 2004/12/06 17:53:42 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 |
@@ -225,7 +225,7 @@ LUA_API int lua_threadstatus (lua_State *L); | |||
225 | #define LUA_GCCOLLECT 2 | 225 | #define LUA_GCCOLLECT 2 |
226 | #define LUA_GCCOUNT 3 | 226 | #define LUA_GCCOUNT 3 |
227 | #define LUA_GCSTEP 4 | 227 | #define LUA_GCSTEP 4 |
228 | #define LUA_GCSETSTEPMUL 5 | 228 | #define LUA_GCSETPACE 5 |
229 | #define LUA_GCSETINCMODE 6 | 229 | #define LUA_GCSETINCMODE 6 |
230 | 230 | ||
231 | LUA_API int lua_gc (lua_State *L, int what, int data); | 231 | LUA_API int lua_gc (lua_State *L, int what, int data); |