]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/exit.c
Libc-1244.50.9.tar.gz
[apple/libc.git] / stdlib / FreeBSD / exit.c
index e61834e1e368600da72dcf017632591fd29ab60e..ba66bc6644ff357674b69163510e8ec001a4c9e8 100644 (file)
@@ -55,3 +55,11 @@ extern void _tlv_exit();
 void
 exit(int status)
 {
+#if !TARGET_IPHONE_SIMULATOR && (__i386__ || __x86_64__)
+       _tlv_exit(); // C++11 requires thread_local objects to be destroyed before global objects
+#endif
+       __cxa_finalize(NULL);
+       if (__cleanup)
+               (*__cleanup)();
+       __exit(status);
+}