diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-02 12:19:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-02 12:19:19 -0300 |
commit | 11126422d9006e835a00cb1cbe2290a6820a401d (patch) | |
tree | 3a14b05a52f30efa9077bf8dd2a9b5d477cb250e /lua.h | |
parent | e54668b6961a610a1b83a78a11581e2e6cfc0c7e (diff) | |
download | lua-11126422d9006e835a00cb1cbe2290a6820a401d.tar.gz lua-11126422d9006e835a00cb1cbe2290a6820a401d.tar.bz2 lua-11126422d9006e835a00cb1cbe2290a6820a401d.zip |
option to return GC to normal (incremental, non generational) mode
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.264 2010/03/22 18:28:03 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.265 2010/03/26 20:58:11 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_GCSETSTEPMUL 7 | 267 | #define LUA_GCSETSTEPMUL 7 |
268 | #define LUA_GCISRUNNING 8 | 268 | #define LUA_GCISRUNNING 8 |
269 | #define LUA_GCGEN 9 | 269 | #define LUA_GCGEN 9 |
270 | #define LUA_GCINC 10 | ||
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 | ||