1997-09-16 12:25:59 -07:00
|
|
|
/*
|
1999-08-16 13:52:00 -07:00
|
|
|
** $Id: lgc.h,v 1.4 1997/12/01 20:31:25 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"
|
|
|
|
|
|
|
|
|
|
|
|
void luaC_checkGC (void);
|
1999-08-16 13:52:00 -07:00
|
|
|
const TObject *luaC_getref (int ref);
|
|
|
|
int luaC_ref (const TObject *o, int lock);
|
1997-12-01 12:31:25 -08:00
|
|
|
void luaC_hashcallIM (Hash *l);
|
|
|
|
void luaC_strcallIM (TaggedString *l);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|