Update/correct copyright notices.
[external/binutils.git] / gdb / complaints.h
1 /* Definitions for complaint handling during symbol reading in GDB.
2    Copyright 1990, 1991, 1992, 1995, 1998, 2000
3    Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
21
22
23 #if !defined (COMPLAINTS_H)
24 #define COMPLAINTS_H
25
26
27 /* Support for complaining about things in the symbol file that aren't
28    catastrophic.
29
30    Each such thing gets a counter.  The first time we have the problem,
31    during a symbol read, we report it.  At the end of symbol reading,
32    if verbose, we report how many of each problem we had.  */
33
34 struct complaint
35   {
36     char *message;
37     unsigned counter;
38     struct complaint *next;
39   };
40
41 /* Root of the chain of complaints that have at some point been issued. 
42    This is used to reset the counters, and/or report the total counts.  */
43
44 extern struct complaint complaint_root[1];
45
46 /* Functions that handle complaints.  (in complaints.c)  */
47
48 extern void complain (struct complaint *, ...);
49
50 extern void clear_complaints (int, int);
51
52
53 #endif /* !defined (COMPLAINTS_H) */