| 323 | } |
| 324 | |
| 325 | void |
| 326 | clean_unrhdr(struct unrhdr *uh) |
| 327 | { |
| 328 | |
| 329 | mtx_lock(uh->mtx); |
| 330 | clean_unrhdrl(uh); |
| 331 | mtx_unlock(uh->mtx); |
| 332 | } |
| 333 | |
| 334 | void |
| 335 | init_unrhdr(struct unrhdr *uh, int low, int high, struct mtx *mutex) |
nothing calls this directly
no test coverage detected