* Allocate and initialize a prime number sized hash table with default flag: * may sleep. */
| 145 | * may sleep. |
| 146 | */ |
| 147 | void * |
| 148 | phashinit(int elements, struct malloc_type *type, u_long *nentries) |
| 149 | { |
| 150 | |
| 151 | return (phashinit_flags(elements, type, nentries, HASH_WAITOK)); |
| 152 | } |
nothing calls this directly
no test coverage detected