From e74b250d71c9a72758d7bb586bb906cacd8293f6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 22 Jan 1996 12:15:13 -0200 Subject: memory overflow tries a garbage collection; if it fails then exit the program. --- table.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'table.h') diff --git a/table.h b/table.h index f38ea668..a3c10388 100644 --- a/table.h +++ b/table.h @@ -1,7 +1,7 @@ /* ** Module to control static tables ** TeCGraf - PUC-Rio -** $Id: table.h,v 2.12 1995/10/17 11:58:41 roberto Exp roberto $ +** $Id: table.h,v 2.13 1995/10/26 14:21:56 roberto Exp roberto $ */ #ifndef table_h @@ -23,6 +23,7 @@ Word luaI_findsymbol (TreeNode *t); Word luaI_findconstant (TreeNode *t); Word luaI_findconstantbyname (char *name); int lua_markobject (Object *o); +Long luaI_collectgarbage (void); void lua_pack (void); -- cgit v1.2.3-55-g6feb