diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-21 13:41:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-21 13:41:34 -0300 |
commit | 777061e441ecbb9e3522aa5c88d9204decc9ff81 (patch) | |
tree | f974a57d8377be76b645de07f4c847dd6d15eaaf /lgc.h | |
parent | fccadba4b54f8e13c8b9cfc97307f53931496936 (diff) | |
download | lua-777061e441ecbb9e3522aa5c88d9204decc9ff81.tar.gz lua-777061e441ecbb9e3522aa5c88d9204decc9ff81.tar.bz2 lua-777061e441ecbb9e3522aa5c88d9204decc9ff81.zip |
resurect userdata before calling its GC tag method
Diffstat (limited to 'lgc.h')
-rw-r--r-- | lgc.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.h,v 1.10 2001/06/05 19:27:32 roberto Exp roberto $ | 2 | ** $Id: lgc.h,v 1.11 2001/06/12 18:43:13 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 | */ |
@@ -15,8 +15,7 @@ | |||
15 | luaC_collectgarbage(L) | 15 | luaC_collectgarbage(L) |
16 | 16 | ||
17 | 17 | ||
18 | void luaC_collectudata (lua_State *L); | 18 | void luaC_callallgcTM (lua_State *L); |
19 | void luaC_callgcTMudata (lua_State *L); | ||
20 | void luaC_collect (lua_State *L, int all); | 19 | void luaC_collect (lua_State *L, int all); |
21 | void luaC_collectgarbage (lua_State *L); | 20 | void luaC_collectgarbage (lua_State *L); |
22 | 21 | ||