lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 0dcae99d7401b38558997056358ca7fc6ffcc9ad
parent b826a39919ff8481c68caef1d98f6be68c145e85
Author: Waldemar Celes <celes@tecgraf.puc-rio.br>
Date:   Thu,  8 Sep 1994 13:51:30 -0300

new field 'next' in struct 'Hash', to list tables for garbage collection.

Diffstat:
Mhash.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hash.h b/hash.h @@ -2,7 +2,7 @@ ** hash.h ** hash manager for lua ** Luiz Henrique de Figueiredo - 17 Aug 90 -** $Id: hash.h,v 2.2 1994/08/05 19:25:09 celes Exp celes $ +** $Id: hash.h,v 2.3 1994/08/09 11:24:45 celes Exp celes $ */ #ifndef hash_h @@ -16,6 +16,7 @@ typedef struct node typedef struct Hash { + struct Hash *next; char mark; unsigned int nhash; unsigned int nuse;