2009-12-15 Tristan Gingold <gingold@adacore.com>
[deliverable/binutils-gdb.git] / gdb / tracepoint.h
CommitLineData
c906108c 1/* Data structures associated with tracepoints in GDB.
0fb0cc75 2 Copyright (C) 1997, 1998, 1999, 2000, 2007, 2008, 2009
9b254dd1 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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 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 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#if !defined (TRACEPOINT_H)
21#define TRACEPOINT_H 1
22
c906108c 23/* The data structure for an action: */
c5aa993b
JM
24struct action_line
25 {
26 struct action_line *next;
27 char *action;
28 };
c906108c 29
c906108c 30enum actionline_type
c5aa993b
JM
31 {
32 BADLINE = -1,
33 GENERIC = 0,
34 END = 1,
35 STEPPING = 2
36 };
c906108c 37
c906108c
SS
38extern unsigned long trace_running_p;
39
d183932d 40/* A hook used to notify the UI of tracepoint operations. */
c906108c 41
9a4105ab
AC
42void (*deprecated_trace_find_hook) (char *arg, int from_tty);
43void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
c906108c 44
a14ed312 45int get_traceframe_number (void);
1042e4c0
SS
46void free_actions (struct breakpoint *);
47enum actionline_type validate_actionline (char **, struct breakpoint *);
c906108c 48
1042e4c0
SS
49extern void end_actions_pseudocommand (char *args, int from_tty);
50extern void while_stepping_pseudocommand (char *args, int from_tty);
c906108c 51
d183932d 52#endif /* TRACEPOINT_H */
This page took 1.471831 seconds and 4 git commands to generate.