summaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-12 15:43:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-12 15:43:13 -0300
commit89e8303f4ea5f1041f3633db7948e7aef17b5226 (patch)
treed3f6853fd3bc177c4ba728aa71051cd29ba57c89 /lgc.h
parent89c301d180ef4ef3887fbf54fe2fd43a5c8d183a (diff)
downloadlua-github-89e8303f4ea5f1041f3633db7948e7aef17b5226.tar.gz
more robust treatment of GC tag methods (now they can create new
objects while running...)
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lgc.h b/lgc.h
index 82f19b76..7268e4c2 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
/*
-** $Id: lgc.h,v 1.9 2001/02/02 16:23:20 roberto Exp roberto $
+** $Id: lgc.h,v 1.10 2001/06/05 19:27:32 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -15,6 +15,8 @@
luaC_collectgarbage(L)
+void luaC_collectudata (lua_State *L);
+void luaC_callgcTMudata (lua_State *L);
void luaC_collect (lua_State *L, int all);
void luaC_collectgarbage (lua_State *L);