diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2004-10-09 02:30:10 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2004-10-09 02:30:10 +0000 |
commit | c3e7f18406f1869604b48b03f8a1e39123885362 (patch) | |
tree | 8e3e1d2f5f372fc6e36fa64ac8ac0238e33b9d75 /libstdc++-v3/acconfig.h | |
parent | a5df984b5fa512505401a4563ccb266289087f79 (diff) | |
download | gcc-c3e7f18406f1869604b48b03f8a1e39123885362.zip gcc-c3e7f18406f1869604b48b03f8a1e39123885362.tar.gz gcc-c3e7f18406f1869604b48b03f8a1e39123885362.tar.bz2 |
acconfig.h: Add _GLIBCXX_USE___CXA_ATEXIT.
2004-10-08 Benjamin Kosnik <bkoz@redhat.com>
* acconfig.h: Add _GLIBCXX_USE___CXA_ATEXIT.
* acinclude.m4 (GLIBCXX_ENABLE_CXA_ATEXIT): New.
* configure.ac: Call GLIBCXX_ENABLE_CXA_EXIT.
* configure: Regenerate.
* src/mt_allocator.cc (__pool::~__pool): Make conditional on
_GLIBCXX_USE___CXA_ATEXIT macro.
* docs/html/ext/mt_allocator.html: Add note about deallocation.
* testsuite/ext/mt_allocator/deallocate_local-2.cc: Guard checks
with _GLIBCXX_USE___CXA_ATEXIT.
* testsuite/ext/mt_allocator/deallocate_global_thread-3.cc: Same.
* testsuite/ext/mt_allocator/deallocate_global_thread-1.cc: Same.
* testsuite/ext/mt_allocator/deallocate_global-4.cc: Same.
* testsuite/ext/mt_allocator/deallocate_global-2.cc: Same.
* testsuite/ext/mt_allocator/deallocate_local_thread-3.cc: Same.
* testsuite/ext/mt_allocator/deallocate_local_thread-1.cc: Same.
* testsuite/ext/mt_allocator/deallocate_local-4.cc: Same.
From-SVN: r88809
Diffstat (limited to 'libstdc++-v3/acconfig.h')
-rw-r--r-- | libstdc++-v3/acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libstdc++-v3/acconfig.h b/libstdc++-v3/acconfig.h index cffecbd..6a2ba98 100644 --- a/libstdc++-v3/acconfig.h +++ b/libstdc++-v3/acconfig.h @@ -28,6 +28,9 @@ // Define to use concept checking code from the boost libraries. #undef _GLIBCXX_CONCEPT_CHECKS +// Define to use __cxa_atexit. +#undef _GLIBCXX_USE___CXA_ATEXIT + // Define to use symbol versioning in the shared library. #undef _GLIBCXX_SYMVER |