exception.cc: Don't #include "exception".
2000-10-13 Bryce McKinlay <bryce@albatross.co.nz> * exception.cc: Don't #include "exception". (_Jv_eh_alloc): Call abort (), not terminate (), if malloc fails. * Makefile.am (libgcj_la_LDFLAGS): Link in libsupc++. * Makefile.in: Updated. From-SVN: r36855
This commit is contained in:
parent
3c1d1e7b7f
commit
c26f7a3165
4 changed files with 11 additions and 4 deletions
|
@ -10,7 +10,6 @@ details. */
|
|||
|
||||
#include <config.h>
|
||||
|
||||
#include "exception"
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -101,7 +100,7 @@ _Jv_eh_alloc ()
|
|||
apparently can sometimes free() this value itself. */
|
||||
java_eh_info *p = (java_eh_info *) malloc (sizeof (java_eh_info));
|
||||
if (p == 0)
|
||||
terminate ();
|
||||
abort ();
|
||||
|
||||
p->value = 0;
|
||||
java_eh_info ** info_ptr = __get_eh_info ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue