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