| 61 | } |
| 62 | |
| 63 | void |
| 64 | zrl_destroy(zrlock_t *zrl) |
| 65 | { |
| 66 | ASSERT0(zrl->zr_refcount); |
| 67 | |
| 68 | mutex_destroy(&zrl->zr_mtx); |
| 69 | zrl->zr_refcount = ZRL_DESTROYED; |
| 70 | cv_destroy(&zrl->zr_cv); |
| 71 | } |
| 72 | |
| 73 | void |
| 74 | zrl_add_impl(zrlock_t *zrl, const char *zc) |
no test coverage detected