Update years in copyright notice for the GDB files.
[deliverable/binutils-gdb.git] / gdb / annotate.h
CommitLineData
c906108c 1/* Annotation routines for GDB.
28e7fd62 2 Copyright (C) 1986-2013 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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 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 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#include "symtab.h"
20#include "gdbtypes.h"
21
ef37bb07 22extern void annotate_breakpoints_changed (void);
c906108c 23
5c44784c 24extern void annotate_ignore_count_change (void);
a14ed312
KB
25extern void annotate_breakpoint (int);
26extern void annotate_catchpoint (int);
27extern void annotate_watchpoint (int);
28extern void annotate_starting (void);
29extern void annotate_stopped (void);
30extern void annotate_exited (int);
31extern void annotate_signalled (void);
32extern void annotate_signal_name (void);
33extern void annotate_signal_name_end (void);
34extern void annotate_signal_string (void);
35extern void annotate_signal_string_end (void);
36extern void annotate_signal (void);
37
38extern void annotate_breakpoints_headers (void);
39extern void annotate_field (int);
40extern void annotate_breakpoints_table (void);
41extern void annotate_record (void);
42extern void annotate_breakpoints_table_end (void);
43
44extern void annotate_frames_invalid (void);
6dfcd284 45extern void annotate_new_thread (void);
a2b87ed1 46extern void annotate_thread_changed (void);
c906108c 47
c906108c 48struct type;
c906108c 49
a14ed312
KB
50extern void annotate_field_begin (struct type *);
51extern void annotate_field_name_end (void);
52extern void annotate_field_value (void);
53extern void annotate_field_end (void);
54
55extern void annotate_quit (void);
56extern void annotate_error (void);
57extern void annotate_error_begin (void);
58
59extern void annotate_value_history_begin (int, struct type *);
60extern void annotate_value_begin (struct type *);
61extern void annotate_value_history_value (void);
62extern void annotate_value_history_end (void);
63extern void annotate_value_end (void);
64
65extern void annotate_display_begin (void);
66extern void annotate_display_number_end (void);
67extern void annotate_display_format (void);
68extern void annotate_display_expression (void);
69extern void annotate_display_expression_end (void);
70extern void annotate_display_value (void);
71extern void annotate_display_end (void);
72
73extern void annotate_arg_begin (void);
74extern void annotate_arg_name_end (void);
75extern void annotate_arg_value (struct type *);
76extern void annotate_arg_end (void);
77
5af949e3
UW
78extern void annotate_source (char *, int, int, int,
79 struct gdbarch *, CORE_ADDR);
a14ed312 80
5af949e3 81extern void annotate_frame_begin (int, struct gdbarch *, CORE_ADDR);
a14ed312
KB
82extern void annotate_function_call (void);
83extern void annotate_signal_handler_caller (void);
84extern void annotate_frame_address (void);
85extern void annotate_frame_address_end (void);
86extern void annotate_frame_function_name (void);
87extern void annotate_frame_args (void);
88extern void annotate_frame_source_begin (void);
89extern void annotate_frame_source_file (void);
90extern void annotate_frame_source_file_end (void);
91extern void annotate_frame_source_line (void);
92extern void annotate_frame_source_end (void);
93extern void annotate_frame_where (void);
94extern void annotate_frame_end (void);
95
96extern void annotate_array_section_begin (int, struct type *);
97extern void annotate_elt_rep (unsigned int);
98extern void annotate_elt_rep_end (void);
99extern void annotate_elt (void);
100extern void annotate_array_section_end (void);
c906108c 101
9a4105ab
AC
102extern void (*deprecated_annotate_signalled_hook) (void);
103extern void (*deprecated_annotate_signal_hook) (void);
This page took 0.772414 seconds and 4 git commands to generate.