aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-13 10:15:11 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-13 10:15:11 -0200
commitc6254dceffca200e4111f28af4230b6c892ec0d6 (patch)
treec9a122ae3c1d28cad4d9f8ed5578a8be18d0a27d /lua.h
parenta56d889f7225a3cfdfa6dfeb55db2b4ae22f1572 (diff)
downloadlua-c6254dceffca200e4111f28af4230b6c892ec0d6.tar.gz
lua-c6254dceffca200e4111f28af4230b6c892ec0d6.tar.bz2
lua-c6254dceffca200e4111f28af4230b6c892ec0d6.zip
a different option for the GC
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 80c7f1b3..649ec3fc 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.195 2004/12/01 15:50:18 roberto Exp roberto $ 2** $Id: lua.h,v 1.196 2004/12/06 17:53:42 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
@@ -225,7 +225,7 @@ LUA_API int lua_threadstatus (lua_State *L);
225#define LUA_GCCOLLECT 2 225#define LUA_GCCOLLECT 2
226#define LUA_GCCOUNT 3 226#define LUA_GCCOUNT 3
227#define LUA_GCSTEP 4 227#define LUA_GCSTEP 4
228#define LUA_GCSETSTEPMUL 5 228#define LUA_GCSETPACE 5
229#define LUA_GCSETINCMODE 6 229#define LUA_GCSETINCMODE 6
230 230
231LUA_API int lua_gc (lua_State *L, int what, int data); 231LUA_API int lua_gc (lua_State *L, int what, int data);