1 // Test for cleanups in the main thread without -pthread.
3 // { dg-do run { target c++11 } }
4 // { dg-add-options tls }
5 // { dg-require-effective-target tls_runtime }
6 // { dg-require-cxa-atexit "" }
8 extern "C" void _exit (int);
14 ~A() { if (c == 1) _exit(0); }
19 void *thread_main(void *)
28 // The dtor for a in the main thread is run after main exits, so we
29 // return 1 now and override the return value with _exit above.