]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/annotate.h
import gdb-1999-07-07 post reformat
[thirdparty/binutils-gdb.git] / gdb / annotate.h
CommitLineData
c906108c 1/* Annotation routines for GDB.
7a292a7a 2 Copyright 1986, 1989, 1990, 1991, 1992, 1999 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b
JM
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
c906108c
SS
20
21#include "symtab.h"
22#include "gdbtypes.h"
23
24extern void breakpoints_changed PARAMS ((void));
25
26extern void annotate_breakpoint PARAMS ((int));
27extern void annotate_catchpoint PARAMS ((int));
28extern void annotate_watchpoint PARAMS ((int));
29extern void annotate_starting PARAMS ((void));
30extern void annotate_stopped PARAMS ((void));
31extern void annotate_exited PARAMS ((int));
32extern void annotate_signalled PARAMS ((void));
33extern void annotate_signal_name PARAMS ((void));
34extern void annotate_signal_name_end PARAMS ((void));
35extern void annotate_signal_string PARAMS ((void));
36extern void annotate_signal_string_end PARAMS ((void));
37extern void annotate_signal PARAMS ((void));
38
39extern void annotate_breakpoints_headers PARAMS ((void));
40extern void annotate_field PARAMS ((int));
41extern void annotate_breakpoints_table PARAMS ((void));
42extern void annotate_record PARAMS ((void));
43extern void annotate_breakpoints_table_end PARAMS ((void));
44
45extern void annotate_frames_invalid PARAMS ((void));
46
47#ifdef __STDC__
48struct type;
49#endif
50
51extern void annotate_field_begin PARAMS ((struct type *));
52extern void annotate_field_name_end PARAMS ((void));
53extern void annotate_field_value PARAMS ((void));
54extern void annotate_field_end PARAMS ((void));
55
56extern void annotate_quit PARAMS ((void));
57extern void annotate_error PARAMS ((void));
58extern void annotate_error_begin PARAMS ((void));
59
60extern void annotate_value_history_begin PARAMS ((int, struct type *));
61extern void annotate_value_begin PARAMS ((struct type *));
62extern void annotate_value_history_value PARAMS ((void));
63extern void annotate_value_history_end PARAMS ((void));
64extern void annotate_value_end PARAMS ((void));
65
66extern void annotate_display_begin PARAMS ((void));
67extern void annotate_display_number_end PARAMS ((void));
68extern void annotate_display_format PARAMS ((void));
69extern void annotate_display_expression PARAMS ((void));
70extern void annotate_display_expression_end PARAMS ((void));
71extern void annotate_display_value PARAMS ((void));
72extern void annotate_display_end PARAMS ((void));
73
74extern void annotate_arg_begin PARAMS ((void));
75extern void annotate_arg_name_end PARAMS ((void));
76extern void annotate_arg_value PARAMS ((struct type *));
77extern void annotate_arg_end PARAMS ((void));
78
79extern void annotate_source PARAMS ((char *, int, int, int, CORE_ADDR));
80
81extern void annotate_frame_begin PARAMS ((int, CORE_ADDR));
82extern void annotate_function_call PARAMS ((void));
83extern void annotate_signal_handler_caller PARAMS ((void));
84extern void annotate_frame_address PARAMS ((void));
85extern void annotate_frame_address_end PARAMS ((void));
86extern void annotate_frame_function_name PARAMS ((void));
87extern void annotate_frame_args PARAMS ((void));
88extern void annotate_frame_source_begin PARAMS ((void));
89extern void annotate_frame_source_file PARAMS ((void));
90extern void annotate_frame_source_file_end PARAMS ((void));
91extern void annotate_frame_source_line PARAMS ((void));
92extern void annotate_frame_source_end PARAMS ((void));
93extern void annotate_frame_where PARAMS ((void));
94extern void annotate_frame_end PARAMS ((void));
95
96extern void annotate_array_section_begin PARAMS ((int, struct type *));
97extern void annotate_elt_rep PARAMS ((unsigned int));
98extern void annotate_elt_rep_end PARAMS ((void));
99extern void annotate_elt PARAMS ((void));
100extern void annotate_array_section_end PARAMS ((void));
101
102extern void (*annotate_starting_hook) PARAMS ((void));
103extern void (*annotate_stopped_hook) PARAMS ((void));
104extern void (*annotate_signalled_hook) PARAMS ((void));
7a292a7a 105extern void (*annotate_signal_hook) PARAMS ((void));
c906108c 106extern void (*annotate_exited_hook) PARAMS ((void));