From 11126422d9006e835a00cb1cbe2290a6820a401d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 2 Apr 2010 12:19:19 -0300 Subject: option to return GC to normal (incremental, non generational) mode --- lua.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 0b3aa587..454c49da 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.264 2010/03/22 18:28:03 roberto Exp roberto $ +** $Id: lua.h,v 1.265 2010/03/26 20:58:11 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -267,6 +267,7 @@ LUA_API int (lua_status) (lua_State *L); #define LUA_GCSETSTEPMUL 7 #define LUA_GCISRUNNING 8 #define LUA_GCGEN 9 +#define LUA_GCINC 10 LUA_API int (lua_gc) (lua_State *L, int what, int data); -- cgit v1.2.3-55-g6feb