diff options
author | Tom Tromey <tromey@redhat.com> | 2011-03-24 19:47:16 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-03-24 19:47:16 +0000 |
commit | b02ebb9921532d41b00cc1341c46be6ab974086a (patch) | |
tree | e155e76e78b8e7f78978bbee8e83100f88f289b9 /gdb/breakpoint.h | |
parent | 83751839f11bd491cc8ba9e1037637e435750a62 (diff) | |
download | gdb-b02ebb9921532d41b00cc1341c46be6ab974086a.tar.gz |
* linespec.h (struct linespec_result) <special_display>: New
field.
* breakpoint.h (struct breakpoint) <display_canonical>: New
field.
* breakpoint.c (print_breakpoint_location): Respect
display_canonical.
(create_breakpoint_sal): Add 'display_canonical' parameter.
(create_breakpoints_sal): Update.
(create_breakpoint): Update.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index bd097137e6f..d5af928f7d3 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -472,6 +472,8 @@ struct breakpoint /* Non-zero means a silent breakpoint (don't print frame info if we stop here). */ unsigned char silent; + /* Non-zero means display ADDR_STRING to the user verbatim. */ + unsigned char display_canonical; /* Number of stops at this breakpoint that should be continued automatically before really stopping. */ int ignore_count; |