mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
merged from EMC branch into devo
This commit is contained in:
parent
8b14323b28
commit
9fe11cd106
731
gdb/tracepoint.c
731
gdb/tracepoint.c
File diff suppressed because it is too large
Load Diff
@ -90,6 +90,15 @@ struct tracepoint
|
||||
int thread;
|
||||
};
|
||||
|
||||
enum actionline_type
|
||||
{
|
||||
BADLINE = -1,
|
||||
GENERIC = 0,
|
||||
END = 1,
|
||||
STEPPING = 2,
|
||||
};
|
||||
|
||||
|
||||
/* The tracepont chain of all tracepoints */
|
||||
|
||||
extern struct tracepoint *tracepoint_chain;
|
||||
@ -103,7 +112,11 @@ void (*delete_tracepoint_hook) PARAMS ((struct tracepoint *));
|
||||
void (*modify_tracepoint_hook) PARAMS ((struct tracepoint *));
|
||||
|
||||
struct tracepoint *get_tracepoint_by_number PARAMS ((char **));
|
||||
int get_traceframe_number PARAMS ((void));
|
||||
void free_actions PARAMS((struct tracepoint *));
|
||||
enum actionline_type validate_actionline PARAMS((char **,
|
||||
struct tracepoint *));
|
||||
|
||||
|
||||
/* Walk the following statement or block through all tracepoints.
|
||||
ALL_TRACEPOINTS_SAFE does so even if the statment deletes the current
|
||||
|
Loading…
Reference in New Issue
Block a user