diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-05-14 23:33:08 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-05-14 23:33:08 +0000 |
commit | e62c965a4f96c9dc7915c4ac0339beba0434ff88 (patch) | |
tree | 9c6f7931674d2f6e1538814cc7d5ce5790bbe42b /gdb/breakpoint.h | |
parent | 508094de0161e10e83e5673c7ce17726a45e7ca1 (diff) | |
download | gdb-e62c965a4f96c9dc7915c4ac0339beba0434ff88.zip gdb-e62c965a4f96c9dc7915c4ac0339beba0434ff88.tar.gz gdb-e62c965a4f96c9dc7915c4ac0339beba0434ff88.tar.bz2 |
2009-05-14 Paul Pluzhnikov <ppluzhnikov@google.com>
* breakpoint.h: Add breakpoint_re_set_objfile prototype.
* breakpoint.c (create_overlay_event_breakpoint): Renamed
from create_overlay_event_breakpoint_1, old
create_overlay_event_breakpoint deleted.
(breakpoint_re_set_objfile): Don't rescan all objfiles
unnecessarily.
(breakpoint_re_set): New function.
* symfile.c (new_symfile_objfile): Call breakpoint_re_set_objfile
instead of breakpoint_re_set.
* objfiles.c (objfile_relocate): Likewise.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 17b2761..43c2f3f 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -687,7 +687,7 @@ extern int breakpoint_thread_match (CORE_ADDR, ptid_t); extern void until_break_command (char *, int, int); extern void breakpoint_re_set (void); - +extern void breakpoint_re_set_objfile (struct objfile *); extern void breakpoint_re_set_thread (struct breakpoint *); extern struct breakpoint *set_momentary_breakpoint |