diff options
author | Jeff Law <law@redhat.com> | 1996-03-04 21:50:10 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-03-04 21:50:10 +0000 |
commit | 11be829fa134e93be9c6f1f41afead451b9c06d6 (patch) | |
tree | d19618c2e172d8d84e98db09258b41aade4af9cb /gdb/solib.c | |
parent | 421e2c270e512c5f812197fc2da3215279c8b932 (diff) | |
download | gdb-11be829fa134e93be9c6f1f41afead451b9c06d6.zip gdb-11be829fa134e93be9c6f1f41afead451b9c06d6.tar.gz gdb-11be829fa134e93be9c6f1f41afead451b9c06d6.tar.bz2 |
* From Peter Schauer:
* infrun.c (wait_for_inferior): Remove breakpoints and
switch terminal settings before calling SOLIB_ADD.
* solib.c (enable_break, SVR4 variant): Don't map in symbols
for the dynamic linker, the namespace pollution causes real
problems.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 41 |
1 files changed, 9 insertions, 32 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index cc60196..d0319bf 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -1371,9 +1371,7 @@ enable_break () #ifdef BKPT_AT_SYMBOL struct minimal_symbol *msymbol; - struct objfile *objfile; char **bkpt_namep; - CORE_ADDR bkpt_addr; asection *interp_sect; /* First, remove all the solib event breakpoints. Their addresses @@ -1390,7 +1388,7 @@ enable_break () char *buf; CORE_ADDR load_addr; bfd *tmp_bfd; - asection *lowest_sect; + CORE_ADDR sym_addr = 0; /* Read the contents of the .interp section into a local buffer; the contents specify the dynamic linker this program uses. */ @@ -1424,42 +1422,21 @@ enable_break () linker) and subtracting the offset of the entry point. */ load_addr = read_pc () - tmp_bfd->start_address; - /* load_addr now has the base address of the dynamic linker; - however, due to severe braindamage in syms_from_objfile - we need to add the address of the .text section, or the - lowest section of .text doesn't exist to work around the - braindamage. Gross. */ - lowest_sect = bfd_get_section_by_name (tmp_bfd, ".text"); - if (lowest_sect == NULL) - bfd_map_over_sections (tmp_bfd, find_lowest_section, - (PTR) &lowest_sect); - - if (lowest_sect == NULL) + /* Now try to set a breakpoint in the dynamic linker. */ + for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++) { - warning ("Unable to find base address for dynamic linker %s\n", buf); - bfd_close (tmp_bfd); - goto bkpt_at_symbol; + sym_addr = bfd_lookup_symbol (tmp_bfd, *bkpt_namep); + if (sym_addr != 0) + break; } - load_addr += bfd_section_vma (tmp_bfd, lowest_sect); - /* We're done with the temporary bfd. */ bfd_close (tmp_bfd); - /* Now make GDB aware of the symbols in the dynamic linker. Some - might complain about namespace pollution, but as a developer I've - often wanted these symbols available from within the debugger. */ - objfile = symbol_file_add (buf, 0, load_addr, 0, 0, 1); - - /* Now try to set a breakpoint in the dynamic linker. */ - for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++) + if (sym_addr != 0) { - msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, objfile); - if ((msymbol != NULL) && (SYMBOL_VALUE_ADDRESS (msymbol) != 0)) - { - create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol)); - return 1; - } + create_solib_event_breakpoint (load_addr + sym_addr); + return 1; } /* For whatever reason we couldn't set a breakpoint in the dynamic |