* Allocate and initialize a hash table with default flag: may sleep. */
| 86 | * Allocate and initialize a hash table with default flag: may sleep. |
| 87 | */ |
| 88 | void * |
| 89 | hashinit(int elements, struct malloc_type *type, u_long *hashmask) |
| 90 | { |
| 91 | return (hashinit_flags(elements, type, hashmask, HASH_WAITOK)); |
| 92 | } |
| 93 | |
| 94 | void |
| 95 | hashdestroy(void *vhashtbl, struct malloc_type *type, u_long hashmask) |
no test coverage detected