| 567 | */ |
| 568 | |
| 569 | static void lf_alloc_destructor(uchar *arg) |
| 570 | { |
| 571 | TDC_element *element= (TDC_element*) (arg + LF_HASH_OVERHEAD); |
| 572 | DBUG_ENTER("lf_alloc_destructor"); |
| 573 | tdc_assert_clean_share(element); |
| 574 | mysql_cond_destroy(&element->COND_release); |
| 575 | mysql_mutex_destroy(&element->LOCK_table_share); |
| 576 | DBUG_VOID_RETURN; |
| 577 | } |
| 578 | |
| 579 | |
| 580 | static void tdc_hash_initializer(LF_HASH *, |
nothing calls this directly
no test coverage detected