| 630 | } |
| 631 | |
| 632 | void wt_thd_destroy(WT_THD *thd) |
| 633 | { |
| 634 | DBUG_ENTER("wt_thd_destroy"); |
| 635 | |
| 636 | DBUG_ASSERT(thd->my_resources.elements == 0); |
| 637 | DBUG_ASSERT(thd->waiting_for == 0); |
| 638 | |
| 639 | if (thd->pins != 0) |
| 640 | lf_hash_put_pins(thd->pins); |
| 641 | |
| 642 | delete_dynamic(&thd->my_resources); |
| 643 | DBUG_VOID_RETURN; |
| 644 | } |
| 645 | /** |
| 646 | Trivial resource id comparison function - bytewise memcmp. |
| 647 |
nothing calls this directly
no test coverage detected