diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 15:57:07 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 15:57:07 +0000 |
commit | 2f202fde0a4586f88b98439b436e7b0bb1336b26 (patch) | |
tree | 6f697f19c4aea8870408ce2befc1a382a902d08c /gdb/breakpoint.h | |
parent | f5b95b507387e603a383ba6347001314304ceadc (diff) | |
download | gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.zip gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.tar.gz gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.tar.bz2 |
gdb/
Code cleanup.
* breakpoint.c (print_breakpoint_location): Replace bp_location field
source_file references by symtab field references. Remove variables
sal and fullname.
(momentary_breakpoint_from_master, add_location_to_breakpoint):
(clear_command, say_where): Replace bp_location field source_file
references by symtab field references.
(bp_location_dtor): Remove the source_file reference.
(update_static_tracepoint): Replace bp_location field source_file
references by symtab field references.
(breakpoint_free_objfile): New function.
* breakpoint.h (struct bp_location): Extend the comment for line_number.
Replace the field source_file by field symtab, extend its comment.
(breakpoint_free_objfile): New declaration.
* objfiles.c (free_objfile): Call breakpoint_free_objfile.
* tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
field source_file references by symtab field references.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index df9d366..7a2c629 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -465,13 +465,17 @@ struct bp_location it becomes 0 this location is retired. */ int events_till_retirement; - /* Line number of this address. */ + /* Line number which was used to place this location. + + Breakpoint placed into a comment keeps it's user specified line number + despite ADDRESS resolves into a different line number. */ int line_number; - /* Source file name of this address. */ + /* Symtab which was used to place this location. This is used + to find the corresponding source file name. */ - char *source_file; + struct symtab *symtab; }; /* Return values for bpstat_explains_signal. Note that the order of @@ -1550,4 +1554,6 @@ extern struct gdbarch *get_sal_arch (struct symtab_and_line sal); extern void handle_solib_event (void); +extern void breakpoint_free_objfile (struct objfile *objfile); + #endif /* !defined (BREAKPOINT_H) */ |