1999-10-04 10:50:24 -07:00
|
|
|
/*
|
1999-11-22 05:12:07 -08:00
|
|
|
** $Id: lref.h,v 1.2 1999/11/10 15:37:50 roberto Exp roberto $
|
1999-10-04 10:50:24 -07:00
|
|
|
** REF mechanism
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lref_h
|
|
|
|
#define lref_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
1999-11-10 07:37:50 -08:00
|
|
|
|
|
|
|
#define NONEXT -1 /* to end the free list */
|
|
|
|
#define HOLD -2
|
|
|
|
#define COLLECTED -3
|
|
|
|
#define LOCK -4
|
|
|
|
|
|
|
|
|
|
|
|
struct ref {
|
|
|
|
TObject o;
|
|
|
|
int st; /* can be LOCK, HOLD, COLLECTED, or next (for free list) */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
int luaR_ref (lua_State *L, const TObject *o, int lock);
|
|
|
|
const TObject *luaR_getref (lua_State *L, int ref);
|
|
|
|
void luaR_invalidaterefs (lua_State *L);
|
1999-10-04 10:50:24 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|