diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-02-08 06:03:54 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-02-08 06:03:54 +0000 |
commit | 8e65ff28b0780a52bdbe067b6297a66f9ec4e16e (patch) | |
tree | 1cf3436ec5c6d3e4f4dedb4ee2ccfa2c107dc33b /gdb/mi | |
parent | 8ca8f343f993cbe9937ef15e8cbbee95613c2016 (diff) | |
download | gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.zip gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.tar.gz gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.tar.bz2 |
Add __FILE__ and __LINE__ parameter to internal_error() /
internal_verror().
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/mi/mi-cmd-break.c | 5 | ||||
-rw-r--r-- | gdb/mi/mi-cmds.c | 3 | ||||
-rw-r--r-- | gdb/mi/mi-console.c | 12 | ||||
-rw-r--r-- | gdb/mi/mi-getopt.c | 3 |
5 files changed, 23 insertions, 8 deletions
diff --git a/gdb/mi/ChangeLog b/gdb/mi/ChangeLog index 35a5930..4e07ea6 100644 --- a/gdb/mi/ChangeLog +++ b/gdb/mi/ChangeLog @@ -1,3 +1,11 @@ +Wed Feb 7 19:50:37 2001 Andrew Cagney <cagney@redhat.com> + + * mi-getopt.c: Add __FILE__ and __LINE__ parameter to calls to + internal_error. + * mi-console.c: Ditto. + * mi-cmds.c: Ditto. + * mi-cmd-break.c: Ditto. + 2001-01-27 Fernando Nasser <fnasser@redhat.com> From Momchil Velikov <velco@fadata.bg> diff --git a/gdb/mi/mi-cmd-break.c b/gdb/mi/mi-cmd-break.c index fc22be7..dc2eb37 100644 --- a/gdb/mi/mi-cmd-break.c +++ b/gdb/mi/mi-cmd-break.c @@ -1,5 +1,5 @@ /* MI Command Set - breakpoint and watchpoint commands. - Copyright (C) 2000, Free Software Foundation, Inc. + Copyright 2000, 2001 Free Software Foundation, Inc. Contributed by Cygnus Solutions (a Red Hat company). This file is part of GDB. @@ -161,7 +161,8 @@ mi_cmd_break_insert (char *command, char **argv, int argc) break; #endif default: - internal_error ("mi_cmd_break_insert: Bad switch."); + internal_error (__FILE__, __LINE__, + "mi_cmd_break_insert: Bad switch."); } set_gdb_event_hooks (old_hooks); diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index 64ad4f6..7bd36d3 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -234,7 +234,8 @@ build_table (struct mi_cmd *commands) { struct mi_cmd **entry = lookup_table (command->name); if (*entry) - internal_error ("command `%s' appears to be duplicated", + internal_error (__FILE__, __LINE__, + "command `%s' appears to be duplicated", command->name); *entry = command; if (0) diff --git a/gdb/mi/mi-console.c b/gdb/mi/mi-console.c index dc9a217..149e892 100644 --- a/gdb/mi/mi-console.c +++ b/gdb/mi/mi-console.c @@ -65,7 +65,8 @@ mi_console_file_delete (struct ui_file *file) { struct mi_console_file *mi_console = ui_file_data (file); if (mi_console->magic != &mi_console_file_magic) - internal_error ("mi_console_file_delete: bad magic number"); + internal_error (__FILE__, __LINE__, + "mi_console_file_delete: bad magic number"); xfree (mi_console); } @@ -75,7 +76,8 @@ mi_console_file_fputs (const char *buf, { struct mi_console_file *mi_console = ui_file_data (file); if (mi_console->magic != &mi_console_file_magic) - internal_error ("mi_console_file_fputs: bad magic number"); + internal_error (__FILE__, __LINE__, + "mi_console_file_fputs: bad magic number"); /* Append the text to our internal buffer */ fputs_unfiltered (buf, mi_console->buffer); /* Flush when an embedded \n */ @@ -91,7 +93,8 @@ mi_console_raw_packet (void *data, { struct mi_console_file *mi_console = data; if (mi_console->magic != &mi_console_file_magic) - internal_error ("mi_console_file_transform: bad magic number"); + internal_error (__FILE__, __LINE__, + "mi_console_file_transform: bad magic number"); if (length_buf > 0) { @@ -108,7 +111,8 @@ mi_console_file_flush (struct ui_file *file) { struct mi_console_file *mi_console = ui_file_data (file); if (mi_console->magic != &mi_console_file_magic) - internal_error ("mi_console_file_flush: bad magic number"); + internal_error (__FILE__, __LINE__, + "mi_console_file_flush: bad magic number"); ui_file_put (mi_console->buffer, mi_console_raw_packet, mi_console); ui_file_rewind (mi_console->buffer); } diff --git a/gdb/mi/mi-getopt.c b/gdb/mi/mi-getopt.c index 74cbd67..e871920 100644 --- a/gdb/mi/mi-getopt.c +++ b/gdb/mi/mi-getopt.c @@ -33,7 +33,8 @@ mi_getopt (const char *prefix, struct mi_opt *opt; /* We assume that argv/argc are ok. */ if (*optind > argc || *optind < 0) - internal_error ("mi_getopt_long: optind out of bounds"); + internal_error (__FILE__, __LINE__, + "mi_getopt_long: optind out of bounds"); if (*optind == argc) return -1; arg = argv[*optind]; |