| 33 | } |
| 34 | |
| 35 | void |
| 36 | rec_mutex_destroy(RecMutex *m) |
| 37 | { |
| 38 | ink_assert(m->nthread_holding == 0); |
| 39 | ink_assert(m->thread_holding == ink_thread_null()); |
| 40 | ink_mutex_destroy(&(m->the_mutex)); |
| 41 | } |
| 42 | |
| 43 | void |
| 44 | rec_mutex_acquire(RecMutex *m) |
no test coverage detected