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/tui/tui-file.c | |
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/tui/tui-file.c')
-rw-r--r-- | gdb/tui/tui-file.c | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/gdb/tui/tui-file.c b/gdb/tui/tui-file.c index bf3574b..29f84f4 100644 --- a/gdb/tui/tui-file.c +++ b/gdb/tui/tui-file.c @@ -1,5 +1,5 @@ /* UI_FILE - a generic STDIO like output stream. - Copyright (C) 1999, 2000 Free Software Foundation, Inc. + Copyright 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -85,7 +85,8 @@ tui_file_delete (struct ui_file *file) { struct tui_stream *tmpstream = ui_file_data (file); if (tmpstream->ts_magic != &tui_file_magic) - internal_error ("tui_file_delete: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_delete: bad magic number"); if ((tmpstream->ts_streamtype == astring) && (tmpstream->ts_strbuf != NULL)) { @@ -131,7 +132,8 @@ tui_file_isatty (struct ui_file *file) { struct tui_stream *stream = ui_file_data (file); if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_isatty: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_isatty: bad magic number"); if (stream->ts_streamtype == afile) return (isatty (fileno (stream->ts_filestream))); else @@ -143,7 +145,8 @@ tui_file_rewind (struct ui_file *file) { struct tui_stream *stream = ui_file_data (file); if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_rewind: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_rewind: bad magic number"); stream->ts_strbuf[0] = '\0'; } @@ -154,7 +157,8 @@ tui_file_put (struct ui_file *file, { struct tui_stream *stream = ui_file_data (file); if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_put: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_put: bad magic number"); if (stream->ts_streamtype == astring) write (dest, stream->ts_strbuf, strlen (stream->ts_strbuf)); } @@ -240,7 +244,8 @@ tui_file_get_strbuf (struct ui_file *file) { struct tui_stream *stream = ui_file_data (file); if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_get_strbuf: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_get_strbuf: bad magic number"); return (stream->ts_strbuf); } @@ -252,7 +257,8 @@ tui_file_adjust_strbuf (int n, struct ui_file *file) struct tui_stream *stream = ui_file_data (file); int non_null_chars; if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_adjust_strbuf: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_adjust_strbuf: bad magic number"); if (stream->ts_streamtype != astring) return; @@ -278,7 +284,8 @@ tui_file_flush (struct ui_file *file) { struct tui_stream *stream = ui_file_data (file); if (stream->ts_magic != &tui_file_magic) - internal_error ("tui_file_flush: bad magic number"); + internal_error (__FILE__, __LINE__, + "tui_file_flush: bad magic number"); /* NOTE: cagney/1999-10-12: If we've been linked with code that uses fputs_unfiltered_hook then we assume that it doesn't need to know |