From 9f4211310fcea9ebf08f4884f8665520c1b8d85f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 20 Oct 2005 09:35:50 -0200 Subject: more precision for gc count --- lua.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 0bd97084..e94bc734 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.212 2005/08/25 20:02:08 roberto Exp roberto $ +** $Id: lua.h,v 1.213 2005/09/20 17:55:10 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -221,9 +221,10 @@ LUA_API int (lua_status) (lua_State *L); #define LUA_GCRESTART 1 #define LUA_GCCOLLECT 2 #define LUA_GCCOUNT 3 -#define LUA_GCSTEP 4 -#define LUA_GCSETPAUSE 5 -#define LUA_GCSETSTEPMUL 6 +#define LUA_GCCOUNTB 4 +#define LUA_GCSTEP 5 +#define LUA_GCSETPAUSE 6 +#define LUA_GCSETSTEPMUL 7 LUA_API int (lua_gc) (lua_State *L, int what, int data); -- cgit v1.2.3-55-g6feb