1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2003-02-10 09:32:50 -08:00
|
|
|
** $Id: lgc.h,v 1.17 2002/11/25 12:38:47 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Garbage Collector
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lgc_h
|
|
|
|
#define lgc_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
2001-06-05 12:41:24 -07:00
|
|
|
#define luaC_checkGC(L) if (G(L)->nblocks >= G(L)->GCthreshold) \
|
|
|
|
luaC_collectgarbage(L)
|
|
|
|
|
|
|
|
|
2003-02-10 09:32:50 -08:00
|
|
|
void luaC_separateudata (lua_State *L);
|
|
|
|
void luaC_callGCTM (lua_State *L);
|
2002-08-16 13:00:28 -07:00
|
|
|
void luaC_sweep (lua_State *L, int all);
|
2001-02-02 08:23:20 -08:00
|
|
|
void luaC_collectgarbage (lua_State *L);
|
2002-11-25 04:38:47 -08:00
|
|
|
void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|