| 15 | } |
| 16 | |
| 17 | void g(void) { |
| 18 | void *stuff = malloc(3432); |
| 19 | stuff = 0; |
| 20 | tls_ptr = malloc(1234); |
| 21 | tls_ptr = 0; |
| 22 | atomic_store(&thread_done, true); |
| 23 | while (1); |
| 24 | } |
| 25 | |
| 26 | int main(int argc, char **argv) { |
| 27 | std::thread t(g); |
nothing calls this directly
no test coverage detected