aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-06-04 12:30:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-06-04 12:30:53 -0300
commit345379b5ff7ce6f5a732a6954bfb5e83bce12036 (patch)
tree2d55667999fe8e4d5986ab8cc13eaeb837657642 /lua.h
parent118e471fa0fd9db1c3a4b966a4312f65d4aa33a7 (diff)
downloadlua-345379b5ff7ce6f5a732a6954bfb5e83bce12036.tar.gz
lua-345379b5ff7ce6f5a732a6954bfb5e83bce12036.tar.bz2
lua-345379b5ff7ce6f5a732a6954bfb5e83bce12036.zip
option for garbage-collector `step'
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 94d4166e..0b5347d6 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.190 2004/05/31 19:41:52 roberto Exp roberto $ 2** $Id: lua.h,v 1.191 2004/06/02 17:37:03 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -217,6 +217,7 @@ LUA_API int lua_resume (lua_State *L, int narg);
217#define LUA_GCRESTART 1 217#define LUA_GCRESTART 1
218#define LUA_GCCOLLECT 2 218#define LUA_GCCOLLECT 2
219#define LUA_GCCOUNT 3 219#define LUA_GCCOUNT 3
220#define LUA_GCSTEP 4
220 221
221LUA_API int lua_gc (lua_State *L, int what, int data); 222LUA_API int lua_gc (lua_State *L, int what, int data);
222 223