[BACK]Return to mpool.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Attic/mpool.h between version 1.5 and 1.6

version 1.5, 1999/02/15 21:13:07 version 1.6, 1999/02/15 21:17:48
Line 49 
Line 49 
  * pool is handed an opaque MPOOL cookie which stores all of this information.   * pool is handed an opaque MPOOL cookie which stores all of this information.
  */   */
 #define HASHSIZE        128  #define HASHSIZE        128
 #define HASHKEY(pgno)   ((pgno - 1) % HASHSIZE)  #define HASHKEY(pgno)   ((pgno - 1 + HASHSIZE) % HASHSIZE)
   
 /* The BKT structures are the elements of the queues. */  /* The BKT structures are the elements of the queues. */
 typedef struct _bkt {  typedef struct _bkt {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6