1997-09-16 23:25:59 +04:00
|
|
|
/*
|
1999-08-17 00:52:00 +04:00
|
|
|
** $Id: lgc.h,v 1.4 1997/12/01 20:31:25 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Garbage Collector
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lgc_h
|
|
|
|
#define lgc_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
|
|
|
void luaC_checkGC (void);
|
1999-08-17 00:52:00 +04:00
|
|
|
const TObject *luaC_getref (int ref);
|
|
|
|
int luaC_ref (const TObject *o, int lock);
|
1997-12-01 23:31:25 +03:00
|
|
|
void luaC_hashcallIM (Hash *l);
|
|
|
|
void luaC_strcallIM (TaggedString *l);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|