exception.cc (cstdlib): Replaces stdlib.h.
authorAlexandre Petit-Bianco <apbianco@redhat.com>
Sun, 10 Jun 2001 20:59:37 +0000 (13:59 -0700)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Sun, 10 Jun 2001 20:59:37 +0000 (13:59 -0700)
2001-06-10  Alexandre Petit-Bianco  <apbianco@redhat.com>

        * exception.cc (cstdlib): Replaces stdlib.h.
        (_Jv_Throw): Use std::abort().
        (PERSONALITY_FUNCTION): Likewise.

(http://gcc.gnu.org/ml/gcc-patches/2001-06/msg00620.html )

From-SVN: r43153

libjava/ChangeLog
libjava/exception.cc

index 7e6b8d91be4b9eac6cb3302dbc573310ab8ffabd..af4f26f118db31567cb21465eed650822d621045 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-10  Alexandre Petit-Bianco  <apbianco@redhat.com>
+
+       * exception.cc (cstdlib): Replaces stdlib.h.
+       (_Jv_Throw): Use std::abort().
+       (PERSONALITY_FUNCTION): Likewise.
+
 2001-06-09  Alexandre Oliva  <aoliva@redhat.com>, Stephen L Moshier  <moshier@mediaone.net>
 
        * acinclude.m4 (AC_EXEEXT): Work around in case it expands to
index 77e3e91b616a0e0f0ed529f8b49123bb9aa98060..16bbb9fa114be47d167dca9f72fcf005ebe3996c 100644 (file)
@@ -11,7 +11,7 @@ details.  */
 #include <config.h>
 
 #include <stddef.h>
-#include <stdlib.h>
+#include <cstdlib>
 
 #include <java/lang/Class.h>
 #include <java/lang/NullPointerException.h>
@@ -100,7 +100,7 @@ _Jv_Throw (jthrowable value)
      recover.  As is the way of such things, almost certainly we will have
      crashed before now, rather than actually being able to diagnose the
      problem.  */
-  abort ();
+  std::abort ();
 }
 
 \f
@@ -348,7 +348,7 @@ PERSONALITY_FUNCTION (int version,
              // ??? Perhaps better to make them an index into a table
              // of null-terminated strings instead of playing games
              // with Utf8Const+1 as above.
-             abort ();
+             std::abort ();
            }
 
          if (ar_disp == 0)