diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-22 15:28:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-22 15:28:03 -0300 |
commit | 74123e96869bdb55d3967036e2bc0c6f9e0550d6 (patch) | |
tree | 06b60d23fb253c8ff1c640f34e15424455737395 /lua.h | |
parent | 9c196bebad4f84ffb43f0ef1e19792cc4b795704 (diff) | |
download | lua-74123e96869bdb55d3967036e2bc0c6f9e0550d6.tar.gz lua-74123e96869bdb55d3967036e2bc0c6f9e0550d6.tar.bz2 lua-74123e96869bdb55d3967036e2bc0c6f9e0550d6.zip |
draft version of a generational mode for garbage collection. (Not well
tested; no major collections; ...)
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.262 2010/03/13 03:57:46 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.263 2010/03/19 21:04:17 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 |
@@ -267,6 +267,7 @@ LUA_API int (lua_status) (lua_State *L); | |||
267 | #define LUA_GCSETPAUSE 6 | 267 | #define LUA_GCSETPAUSE 6 |
268 | #define LUA_GCSETSTEPMUL 7 | 268 | #define LUA_GCSETSTEPMUL 7 |
269 | #define LUA_GCISRUNNING 8 | 269 | #define LUA_GCISRUNNING 8 |
270 | #define LUA_GCGEN 9 | ||
270 | 271 | ||
271 | LUA_API int (lua_gc) (lua_State *L, int what, int data); | 272 | LUA_API int (lua_gc) (lua_State *L, int what, int data); |
272 | 273 | ||