diff options
author | Fred Fish <fnf@specifix.com> | 1992-12-15 12:18:53 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-12-15 12:18:53 +0000 |
commit | 51b80b0072e928c9163087e1fcbc71e52301f524 (patch) | |
tree | 90bb7bbe1b85b516f3439749f81af4c42a6085ef /gdb/complaints.h | |
parent | 631f7a9f7c9d520973aec40b9ef090cc59b3caa0 (diff) | |
download | gdb-51b80b0072e928c9163087e1fcbc71e52301f524.zip gdb-51b80b0072e928c9163087e1fcbc71e52301f524.tar.gz gdb-51b80b0072e928c9163087e1fcbc71e52301f524.tar.bz2 |
* complaints.c: New file, code moved from utils.c.
* complaints.c (complain): Made into a varargs function.
* complaints.h: New file, code moved from symfile.h.
* Makefile.in (SFILES_MAINDIR): Add complaints.c.
* Makefile.in (HFILES): Add complaints.h.
* Makefile.in (OBS): Add complaints.o.
* symfile.c (complaint_root, stop_whining, complaint_series,
complain, clear_complaints, add_show_from_set for stop_whining):
Moved to complaints.c.
* symfile.h (struct complaint, complaint_root decl, complain
prototype, clear_complaints prototype): Moved to complaints.h.
* buildsym.c, coffread.c, dbxread.c, dwarfread.c, elfread.c,
gdbtypes.c, mipsread.c, stbsread.c, symfile.c: Include
complaints.h. Remove casts from arguments to complain(),
which is now a varargs function, and remove unnecessary
placeholder zero args.
* defs.h (begin_line): Add prototype.
* defs.h (vprintf_filtered): Add prototype.
* dwarfread.c (varargs.h): Remove, no longer needed.
* dwarfread.c (dwarfwarn): Remove prototype and function.
* dwarfread.c (complaints): Define a bunch of complaints.
* dwarfread.c (SQUAWK): Remove macro defs, convert all
usages to standard complain() calls.
* utils.c (begin_line): New function that ensures that
whatever gets filter-printed next starts on its own line.
* utils.c (vprintf_filtered): New func, like vfprintf_filtered,
but to stdout (calls vfprintf_filtered internally).
Diffstat (limited to 'gdb/complaints.h')
-rw-r--r-- | gdb/complaints.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gdb/complaints.h b/gdb/complaints.h new file mode 100644 index 0000000..f7ff5a5 --- /dev/null +++ b/gdb/complaints.h @@ -0,0 +1,46 @@ +/* Definitions for complaint handling during symbol reading in GDB. + Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc. + +This file is part of GDB. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + + +/* Support for complaining about things in the symbol file that aren't + catastrophic. + + Each such thing gets a counter. The first time we have the problem, + during a symbol read, we report it. At the end of symbol reading, + if verbose, we report how many of each problem we had. */ + +struct complaint +{ + char *message; + unsigned counter; + struct complaint *next; +}; + +/* Root of the chain of complaints that have at some point been issued. + This is used to reset the counters, and/or report the total counts. */ + +extern struct complaint complaint_root[1]; + +/* Functions that handle complaints. (in complaints.c) */ + +extern void +complain (); + +extern void +clear_complaints PARAMS ((int, int)); |