summaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-03-09 14:34:35 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-03-09 14:34:35 -0300
commitb876ec61c03e05ea0c4c02d8ad8abb84cf55e87c (patch)
tree62224cadfc7273beecb092f0e4a761e4c4f634e5 /lgc.h
parent898e8a67942186d62aa2cd3dc4ef96fe894788ef (diff)
downloadlua-b876ec61c03e05ea0c4c02d8ad8abb84cf55e87c.tar.gz
lua-b876ec61c03e05ea0c4c02d8ad8abb84cf55e87c.tar.bz2
lua-b876ec61c03e05ea0c4c02d8ad8abb84cf55e87c.zip
new (temporary?) API for garbage collector
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lgc.h b/lgc.h
index a6901076..eae99a98 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.2 2003/12/12 18:29:34 roberto Exp roberto $ 2** $Id: lgc.h,v 2.3 2004/02/16 19:09:52 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -85,6 +85,7 @@ size_t luaC_separateudata (lua_State *L, int all);
85void luaC_callGCTM (lua_State *L); 85void luaC_callGCTM (lua_State *L);
86void luaC_sweepall (lua_State *L); 86void luaC_sweepall (lua_State *L);
87void luaC_step (lua_State *L); 87void luaC_step (lua_State *L);
88void luaC_fullgc (lua_State *L);
88void luaC_link (lua_State *L, GCObject *o, lu_byte tt); 89void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
89void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); 90void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v);
90 91