From 686e57cf9c61070ff961407e3304071e171542f4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 13 Sep 2013 13:21:52 -0300 Subject: GC local pause configurable --- lua.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index b316d11b..93ba9b0b 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.292 2013/07/05 14:29:51 roberto Exp roberto $ +** $Id: lua.h,v 1.293 2013/08/05 16:58:28 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 @@ -288,7 +288,8 @@ LUA_API int (lua_status) (lua_State *L); #define LUA_GCSTEP 5 #define LUA_GCSETPAUSE 6 #define LUA_GCSETSTEPMUL 7 -#define LUA_GCISRUNNING 8 +#define LUA_GCSETLOCALPAUSE 8 +#define LUA_GCISRUNNING 9 LUA_API int (lua_gc) (lua_State *L, int what, int data); -- cgit v1.2.3-55-g6feb