1 /* Data structures associated with tracepoints in GDB.
2 Copyright (C) 1997, 1998, 1999, 2000, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GDB.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #if !defined (TRACEPOINT_H)
21 #define TRACEPOINT_H 1
23 /* The data structure for an action: */
26 struct action_line *next;
38 /* A trace state variable is a value managed by a target being
39 traced. A trace state variable (or tsv for short) can be accessed
40 and assigned to by tracepoint actions and conditionals, but is not
41 part of the program being traced, and it doesn't have to be
42 collected. Effectively the variables are scratch space for
45 struct trace_state_variable
47 /* The variable's name. The user has to prefix with a dollar sign,
48 but we don't store that internally. */
51 /* An id number assigned by GDB, and transmitted to targets. */
54 /* The initial value of a variable is a 64-bit signed integer. */
55 LONGEST initial_value;
57 /* 1 if the value is known, else 0. The value is known during a
58 trace run, or in tfind mode if the variable was collected into
59 the current trace frame. */
62 /* The value of a variable is a 64-bit signed integer. */
66 extern unsigned long trace_running_p;
68 extern char *default_collect;
70 /* A hook used to notify the UI of tracepoint operations. */
72 extern void (*deprecated_trace_find_hook) (char *arg, int from_tty);
73 extern void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
75 int get_traceframe_number (void);
76 void free_actions (struct breakpoint *);
77 enum actionline_type validate_actionline (char **, struct breakpoint *);
79 extern void end_actions_pseudocommand (char *args, int from_tty);
80 extern void while_stepping_pseudocommand (char *args, int from_tty);
82 extern struct trace_state_variable *find_trace_state_variable (const char *name);
84 #endif /* TRACEPOINT_H */