diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-03-09 14:34:35 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-03-09 14:34:35 -0300 |
commit | b876ec61c03e05ea0c4c02d8ad8abb84cf55e87c (patch) | |
tree | 62224cadfc7273beecb092f0e4a761e4c4f634e5 /lgc.h | |
parent | 898e8a67942186d62aa2cd3dc4ef96fe894788ef (diff) | |
download | lua-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); | |||
85 | void luaC_callGCTM (lua_State *L); | 85 | void luaC_callGCTM (lua_State *L); |
86 | void luaC_sweepall (lua_State *L); | 86 | void luaC_sweepall (lua_State *L); |
87 | void luaC_step (lua_State *L); | 87 | void luaC_step (lua_State *L); |
88 | void luaC_fullgc (lua_State *L); | ||
88 | void luaC_link (lua_State *L, GCObject *o, lu_byte tt); | 89 | void luaC_link (lua_State *L, GCObject *o, lu_byte tt); |
89 | void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); | 90 | void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); |
90 | 91 | ||