| 25 | #include "records/RecMutex.h" |
| 26 | |
| 27 | void |
| 28 | rec_mutex_init(RecMutex *m, const char *) |
| 29 | { |
| 30 | m->nthread_holding = 0; |
| 31 | m->thread_holding = ink_thread_null(); |
| 32 | ink_mutex_init(&(m->the_mutex)); |
| 33 | } |
| 34 | |
| 35 | void |
| 36 | rec_mutex_destroy(RecMutex *m) |
no test coverage detected