diff options
author | Jeff Law <law@redhat.com> | 1996-02-21 07:04:03 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-02-21 07:04:03 +0000 |
commit | 464c6c5f3f10309ea1f55cc9ccd270acaa53ae7d (patch) | |
tree | 82f496474c85a4382485f6a40840c9999c2b109b /gdb/symfile.c | |
parent | 9263da6f130b7f94d332a4eaf46bbc8c403925b7 (diff) | |
download | gdb-464c6c5f3f10309ea1f55cc9ccd270acaa53ae7d.zip gdb-464c6c5f3f10309ea1f55cc9ccd270acaa53ae7d.tar.gz gdb-464c6c5f3f10309ea1f55cc9ccd270acaa53ae7d.tar.bz2 |
* solib.c (solib_break_names): Define for Solaris and Linux.
(enable_break): For SVR4 systems, first try to use the debugger
interfaces in the dynamic linker to track shared library events
as they happen, then fall back to BKPT_AT_SYMBOL code. Convert
BKPT_AT_SYMBOL code to use shared library event breakpoints.
(solib_create_inferior_hook): Simplify BKPT_AT_SYMBOL code,
it no longer needs to restart/wait on the inferior.
* symfile.c (find_lowest_section): No longer static.
* symfile.h (find_lowest_section): Corresponding changes.
Wraps up 7763 work, simplifies BKPT_AT_SYMBOL code somewhat, and allows
debugging of startup code.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 8dc452a..328d07c 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -350,7 +350,7 @@ entry_point_address() If the vmas and sizes are equal, the last section is considered the lowest-addressed loadable section. */ -static void +void find_lowest_section (abfd, sect, obj) bfd *abfd; asection *sect; |