From 6f207b15fb20f1c7d06224354cfdf5e32fdbba68 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Mon, 10 Feb 2003 15:32:50 -0200 Subject: resist errors in finalizers during lua_close --- lgc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lgc.h') diff --git a/lgc.h b/lgc.h index c4a153e2..78adf69a 100644 --- a/lgc.h +++ b/lgc.h @@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 1.16 2002/08/30 19:09:21 roberto Exp roberto $ +** $Id: lgc.h,v 1.17 2002/11/25 12:38:47 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -15,7 +15,8 @@ luaC_collectgarbage(L) -void luaC_callallgcTM (lua_State *L); +void luaC_separateudata (lua_State *L); +void luaC_callGCTM (lua_State *L); void luaC_sweep (lua_State *L, int all); void luaC_collectgarbage (lua_State *L); void luaC_link (lua_State *L, GCObject *o, lu_byte tt); -- cgit v1.2.3-55-g6feb