]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Definitions for complaint handling during symbol reading in GDB. |
b6ba6518 KB |
2 | Copyright 1990, 1991, 1992, 1995, 1998, 2000 |
3 | Free Software Foundation, Inc. | |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
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. | |
c906108c | 11 | |
c5aa993b JM |
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. | |
c906108c | 16 | |
c5aa993b JM |
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. */ | |
c906108c SS |
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 | |
c5aa993b JM |
35 | { |
36 | char *message; | |
37 | unsigned counter; | |
38 | struct complaint *next; | |
39 | }; | |
c906108c SS |
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 | ||
a14ed312 | 48 | extern void complain (struct complaint *, ...); |
c906108c | 49 | |
a14ed312 | 50 | extern void clear_complaints (int, int); |
c906108c SS |
51 | |
52 | ||
c5aa993b | 53 | #endif /* !defined (COMPLAINTS_H) */ |