From 5c7dd74823fae63ce0c34d6260e25b0587e2ae7e Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 2 Nov 2001 21:46:52 +0000 Subject: [PATCH] * utils.c (internal_verror): Restore calls to abort(). Fix PR gdb/219. --- gdb/ChangeLog | 5 +++++ gdb/utils.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ff8c805e87..6c5cd24863 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-11-02 Andrew Cagney + + * utils.c (internal_verror): Restore calls to abort(). + Fix PR gdb/219. + 2001-11-02 Michael Chastain * MAINTAINERS: Update my entry. diff --git a/gdb/utils.c b/gdb/utils.c index d32957f701..e27380ab2d 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -702,7 +702,7 @@ internal_verror (const char *file, int line, case 1: dejavu = 2; fputs_unfiltered (msg, gdb_stderr); - internal_error (__FILE__, __LINE__, "failed internal consistency check"); + abort (); /* NOTE: GDB has only three calls to abort(). */ default: dejavu = 3; write (STDERR_FILENO, msg, sizeof (msg)); @@ -731,13 +731,13 @@ Create a core file containing the current state of GDB? "); if (dump_core_p) { if (fork () == 0) - internal_error (__FILE__, __LINE__, "failed internal consistency check"); + abort (); /* NOTE: GDB has only three calls to abort(). */ } } else { if (dump_core_p) - internal_error (__FILE__, __LINE__, "failed internal consistency check"); + abort (); /* NOTE: GDB has only three calls to abort(). */ else exit (1); } -- 2.34.1