aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2001-11-23 12:36:43 -0500
committerJason Merrill <jason@gcc.gnu.org>2001-11-23 12:36:43 -0500
commitafb0141fbd16bcaa9e3aaa9dee2f64e4449a028e (patch)
tree308452bad5d098c773c1a1018dc3062ab6dc3ed7 /libstdc++-v3
parentc5504edb751bff4f5b2a493921466d04857494f4 (diff)
downloadgcc-afb0141fbd16bcaa9e3aaa9dee2f64e4449a028e.zip
gcc-afb0141fbd16bcaa9e3aaa9dee2f64e4449a028e.tar.gz
gcc-afb0141fbd16bcaa9e3aaa9dee2f64e4449a028e.tar.bz2
vterminate.cc (__verbose_terminate_handler): Add leading underscores.
* src/vterminate.cc (__verbose_terminate_handler): Add leading underscores. From-SVN: r47292
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/libsupc++/exception8
-rw-r--r--libstdc++-v3/src/vterminate.cc6
3 files changed, 14 insertions, 5 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 5df989b..0b25732 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-23 Jason Merrill <jason@redhat.com>
+
+ * src/vterminate.cc (__verbose_terminate_handler): Add leading
+ underscores.
+
2001-11-23 Joseph S. Myers <jsm28@cam.ac.uk>
* ChangeLog, docs/doxygen/maint.cfg.in, docs/doxygen/user.cfg.in,
diff --git a/libstdc++-v3/libsupc++/exception b/libstdc++-v3/libsupc++/exception
index 3e9fd96..2011abf 100644
--- a/libstdc++-v3/libsupc++/exception
+++ b/libstdc++-v3/libsupc++/exception
@@ -98,8 +98,12 @@ namespace std
namespace __gnu_cxx
{
/** A replacement for the standard terminate_handler which prints more
- information about the terminating exception (if any) on stderr. */
- void verbose_terminate_handler ();
+ information about the terminating exception (if any) on stderr.
+
+ std::set_terminate (__gnu_cxx::__verbose_terminate_handler)
+
+ to use. */
+ void __verbose_terminate_handler ();
} // namespace __gnu_cxx
} // extern "C++"
diff --git a/libstdc++-v3/src/vterminate.cc b/libstdc++-v3/src/vterminate.cc
index a56db74..942d6b5 100644
--- a/libstdc++-v3/src/vterminate.cc
+++ b/libstdc++-v3/src/vterminate.cc
@@ -39,9 +39,9 @@ using namespace abi;
namespace __gnu_cxx
{
-/** This is a replacement for the standard terminate_handler which prints
- more information about the terminating exception (if any) on stderr. */
-void verbose_terminate_handler ()
+/* A replacement for the standard terminate_handler which prints
+ more information about the terminating exception (if any) on stderr. */
+void __verbose_terminate_handler ()
{
// Make sure there was an exception; terminate is also called for an
// attempt to rethrow when there is no suitable exception.