| 357 | */ |
| 358 | |
| 359 | struct unrhdr * |
| 360 | new_unrhdr(int low, int high, struct mtx *mutex) |
| 361 | { |
| 362 | struct unrhdr *uh; |
| 363 | |
| 364 | uh = Malloc(sizeof *uh); |
| 365 | init_unrhdr(uh, low, high, mutex); |
| 366 | return (uh); |
| 367 | } |
| 368 | |
| 369 | void |
| 370 | delete_unrhdr(struct unrhdr *uh) |
no test coverage detected