| 250 | thd_join(thd, NULL); |
| 251 | } |
| 252 | TEST_END |
| 253 | |
| 254 | int |
| 255 | main(void) { |
| 256 | /* Ensure tsd bootstrapped. */ |
| 257 | if (nallocx(1, 0) == 0) { |
| 258 | malloc_printf("Initialization error"); |
| 259 | return test_status_fail; |
| 260 | } |
| 261 | |
| 262 | return test_no_reentrancy( |
| 263 | test_tsd_main_thread, |
| 264 | test_tsd_sub_thread, |
| 265 | test_tsd_reincarnation, |
| 266 | test_tsd_global_slow); |
| 267 | } |
nothing calls this directly
no test coverage detected