X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/c6e0eaf00cd09a4e5237e70d8351049ec91d7653..9b64ede2bf4a5475b4dd5a6cfab93488f0f60284:/hash.h diff --git a/hash.h b/hash.h index a7dd705..b7ad04d 100644 --- a/hash.h +++ b/hash.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: hash.h,v 1.2 1999/12/10 23:42:04 mdw Exp $ + * $Id: hash.h,v 1.4 2004/04/08 01:36:11 mdw Exp $ * * General hashtable infrastructure * @@ -27,17 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: hash.h,v $ - * Revision 1.2 1999/12/10 23:42:04 mdw - * Change header file guard names. - * - * Revision 1.1 1999/08/02 14:45:48 mdw - * Break low-level hashtable code out from sym. - * - */ - #ifndef MLIB_HASH_H #define MLIB_HASH_H @@ -56,6 +45,10 @@ #include +#ifndef MLIB_ARENA_H +# include "arena.h" +#endif + #ifndef MLIB_BITS_H # include "bits.h" #endif @@ -72,6 +65,7 @@ typedef struct hash_table { uint32 mask; /* Bit mask of hash bits */ struct hash_base **v; /* Vector of hash bins */ + arena *a; /* Allocation arena */ } hash_table; /* --- A hashtable entry --- *