/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2010 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* Glenn Fowler
* AT&T Bell Laboratories
*
* hash table library
*/
#include "hashlib.h"
/*
* dump HASH_* flags
*/
static void
{
}
/*
* dump hash table bucket info
*/
static void
{
register Hash_bucket_t* b;
int n;
unsigned char* s;
{
n = 0;
n++;
if (n)
{
{
{
s = (unsigned char*)hashname(b);
while (n-- > 0)
}
if (b->hash & HASH_FLAGS)
{
}
}
}
}
}
/*
* dump info on a single table
*/
static void
{
int level;
{
level = 1;
}
}
/*
* dump hash table root info
*/
static void
{
if (root->local->compare) sfprintf(sfstderr, "compare=0x%08lx ", (unsigned long)root->local->compare);
if (root->local->region) sfprintf(sfstderr, "region=0x%08lx handle=0x%08lx ", (unsigned long)root->local->region, (unsigned long)root->local->handle);
}
/*
* dump hash table accounting info
* if tab is 0 then dump all tables in hash_info.list
* flags are HASH_* flags that specifiy optional dump info
*/
void
{
}