diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-17 11:58:57 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-17 11:58:57 -0200 |
commit | b234da1cc2053b8919a9b27af67291e48fdf9703 (patch) | |
tree | b32559df54e0d9c79fe271260f69238244ae2fc7 /hash.h | |
parent | d6a1699e37257c0b3d4651a481ce0bf597bc4e45 (diff) | |
download | lua-b234da1cc2053b8919a9b27af67291e48fdf9703.tar.gz lua-b234da1cc2053b8919a9b27af67291e48fdf9703.tar.bz2 lua-b234da1cc2053b8919a9b27af67291e48fdf9703.zip |
changes in garbage collection control
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ | |||
2 | ** hash.h | 2 | ** hash.h |
3 | ** hash manager for lua | 3 | ** hash manager for lua |
4 | ** Luiz Henrique de Figueiredo - 17 Aug 90 | 4 | ** Luiz Henrique de Figueiredo - 17 Aug 90 |
5 | ** $Id: hash.h,v 2.4 1994/09/08 16:51:49 celes Exp roberto $ | 5 | ** $Id: hash.h,v 2.5 1994/11/14 18:41:15 roberto Exp roberto $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef hash_h | 8 | #ifndef hash_h |
@@ -27,7 +27,7 @@ typedef struct Hash | |||
27 | int lua_equalObj (Object *t1, Object *t2); | 27 | int lua_equalObj (Object *t1, Object *t2); |
28 | Hash *lua_createarray (int nhash); | 28 | Hash *lua_createarray (int nhash); |
29 | void lua_hashmark (Hash *h); | 29 | void lua_hashmark (Hash *h); |
30 | void lua_hashcollector (void); | 30 | int lua_hashcollector (void); |
31 | Object *lua_hashget (Hash *t, Object *ref); | 31 | Object *lua_hashget (Hash *t, Object *ref); |
32 | Object *lua_hashdefine (Hash *t, Object *ref); | 32 | Object *lua_hashdefine (Hash *t, Object *ref); |
33 | void lua_next (void); | 33 | void lua_next (void); |