| 360 | } |
| 361 | |
| 362 | static void |
| 363 | tsd_do_data_cleanup(tsd_t *tsd) { |
| 364 | prof_tdata_cleanup(tsd); |
| 365 | iarena_cleanup(tsd); |
| 366 | arena_cleanup(tsd); |
| 367 | arenas_tdata_cleanup(tsd); |
| 368 | tcache_cleanup(tsd); |
| 369 | witnesses_cleanup(tsd_witness_tsdp_get_unsafe(tsd)); |
| 370 | } |
| 371 | |
| 372 | void |
| 373 | tsd_cleanup(void *arg) { |
no test coverage detected