1. 9a02f50 [libc++abi] Fix unused function when building with LIBCXXABI_SILENT_TERMINATE by Peter Collingbourne · 6 years ago
  2. 847e4d2 [libc++abi] Delete config.h by Shoaib Meenai · 7 years ago
  3. 2ecb4ee [libcxxabi] Clean up macro usage. by Ranjeet Singh · 7 years ago
  4. a3b0b11 Fix couple of test failures when using the LIBCXXABI_SILENT_TERMINATE mode. by Asiri Rathnayake · 7 years ago
  5. 0ecfd76 [libc++abi] Add a silent terminate handler to libcxxabi. by James Y Knight · 7 years ago
  6. 436072f libc++abi: build with -fvisibility=hidden by Saleem Abdulrasool · 8 years ago
  7. 5660f75 Use __atomic_exchange_n instead of Clang's __sync_swap by Reid Kleckner · 10 years ago
  8. 298baa3 Minor libc++abi changes to make things build better with gcc. by Nico Weber · 10 years ago
  9. cba79c6 Partially revert r152770. That commit moved the default handlers to their own file. But it also did some refactoring. It is the latter that is being reverted. The refactoring had accidentally removed the required effect that the default unexpected_handler calls std::terminate(), which is a visible effect. by Howard Hinnant · 11 years ago
  10. 80e5b17 Changed 'cause' from 'terminate' to 'uncaught' in default_terminate_handler by Howard Hinnant · 12 years ago
  11. 4cfb63f I would really like to write the handlers in terms of C++11 atomics. This would give us the best performance, portablity, and safety tradeoff. Unfortunately I can not yet do that. So I've put the desired code in comments, and reverted the handler getters to the slower but safer legacy atomic intrinsics. by Howard Hinnant · 12 years ago
  12. 0f80bb7 I've moved __cxa_terminate_handler, __cxa_unexpected_handler and __cxa_new_handler from the public header cxxabi.h into the private header cxa_handlers.hpp. During this move I've also moved them from namespace __cxxabiapple into the global namespace. They are, and have always been extern C and so the namespace (or lack of it) does not affect their ABI. In general external clients should not reference these symbols. They are atomic variables and will be changing into C++11 atomic variables in the future. However for those few clients who really need access to them, their name, mangling, size, alignment and layout will remain stable. You just may need your own declaration of them. Include guards have been added to the private header cxa_exception.hpp. The private header cxa_default_handlers.hpp has been removed and the default handlers are now file-static. Include guards have been added to the private header cxa_handlers.hpp. by Howard Hinnant · 12 years ago
  13. 1ba2c4b Less lame "concurrency" support by Dave Zarzycki · 12 years ago
  14. 2507bef Be friendly to when dead_strip doesn't work by Dave Zarzycki · 12 years ago
  15. 439ce87 move default handlers to their own file so they can be overridden at build time (dyld) by Nick Kledzik · 12 years ago