| 201 | } |
| 202 | |
| 203 | static void |
| 204 | tsd_do_data_cleanup(tsd_t *tsd) { |
| 205 | prof_tdata_cleanup(tsd); |
| 206 | iarena_cleanup(tsd); |
| 207 | arena_cleanup(tsd); |
| 208 | arenas_tdata_cleanup(tsd); |
| 209 | tcache_cleanup(tsd); |
| 210 | witnesses_cleanup(tsd_witness_tsdp_get_unsafe(tsd)); |
| 211 | } |
| 212 | |
| 213 | void |
| 214 | tsd_cleanup(void *arg) { |
no test coverage detected