From bf2f4a3883ea4ef15c35965a2d6a05715dcbffb7 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 19 Apr 1996 16:49:00 +0000 Subject: [PATCH] Minor changes. --- bfile/cfile.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/bfile/cfile.c b/bfile/cfile.c index c1fd26f..cb3c714 100644 --- a/bfile/cfile.c +++ b/bfile/cfile.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: cfile.c,v $ - * Revision 1.16 1996-04-19 16:23:47 adam + * Revision 1.17 1996-04-19 16:49:00 adam + * Minor changes. + * + * Revision 1.16 1996/04/19 16:23:47 adam * Serious bug fix in shadow implementation; function new_bucket might * set wrong bucket number on new bucket. * @@ -183,11 +186,7 @@ CFile cf_open (MFile mf, MFile_area area, const char *fname, static int cf_hash (CFile cf, int no) { -#if 1 return (no>>3) % cf->head.hash_size; -#else - return (no/(HASH_BUCKET*2+2)) % cf->head.hash_size; -#endif } static void release_bucket (CFile cf, struct CFile_hash_bucket *p) @@ -323,7 +322,7 @@ static int cf_lookup_hash (CFile cf, int no) } if (hb) continue; -#if 1 +#if 0 /* extra check ... */ for (hb = cf->bucket_lru_back; hb; hb = hb->lru_next) { @@ -439,7 +438,7 @@ static int cf_new_hash (CFile cf, int no) if (hb) continue; -#if 1 +#if 0 /* extra check ... */ for (hb = cf->bucket_lru_back; hb; hb = hb->lru_next) { -- 1.7.10.4