diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-07 17:21:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-07 17:21:34 -0300 |
commit | d9e61e8ceafe8c3f6ad936979719ca7c446ce228 (patch) | |
tree | 0808ada3d7b7219022b9002503894c76c7253df6 /ltm.h | |
parent | 397905ef8694ec716a51acebc993bb625340d388 (diff) | |
download | lua-d9e61e8ceafe8c3f6ad936979719ca7c446ce228.tar.gz lua-d9e61e8ceafe8c3f6ad936979719ca7c446ce228.tar.bz2 lua-d9e61e8ceafe8c3f6ad936979719ca7c446ce228.zip |
new algorithm for traversing in GC to avoid deep recursion calls
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 1.12 2000/03/30 16:41:51 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 1.13 2000/05/30 18:54:49 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -52,7 +52,6 @@ void luaT_realtag (lua_State *L, int tag); | |||
52 | int luaT_effectivetag (lua_State *L, const TObject *o); | 52 | int luaT_effectivetag (lua_State *L, const TObject *o); |
53 | void luaT_settagmethod (lua_State *L, int t, const char *event, TObject *func); | 53 | void luaT_settagmethod (lua_State *L, int t, const char *event, TObject *func); |
54 | const TObject *luaT_gettagmethod (lua_State *L, int t, const char *event); | 54 | const TObject *luaT_gettagmethod (lua_State *L, int t, const char *event); |
55 | const char *luaT_travtagmethods (lua_State *L, int (*fn)(lua_State *, TObject *)); | ||
56 | int luaT_validevent (int t, int e); /* used by compatibility module */ | 55 | int luaT_validevent (int t, int e); /* used by compatibility module */ |
57 | 56 | ||
58 | 57 | ||