diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2007-08-14 11:09:45 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2007-08-14 11:09:45 +0000 |
commit | cb851954200d7cf1d391dc9d28dddbefd9840eac (patch) | |
tree | 25caf2187ef7610b08324cc28d4ba0dfda75f87f /gdb/solib.c | |
parent | cf73852866eaa9e1a6ce7ffa74e81213c7711426 (diff) | |
download | gdb-cb851954200d7cf1d391dc9d28dddbefd9840eac.zip gdb-cb851954200d7cf1d391dc9d28dddbefd9840eac.tar.gz gdb-cb851954200d7cf1d391dc9d28dddbefd9840eac.tar.bz2 |
gdb/
* breakpoint.c (disable_breakpoints_in_shlibs): Remove
the 'silent' parameter and code to implement that.
* breakpoint.h (disable_breakpoints_in_shlibs): Adjust
prototype.
* win32-nat.c: Adjust.
* solib.c: Adjust.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index bd4cf51..7e2f758 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -854,7 +854,7 @@ clear_solib (void) So: disable breakpoints only if we're using ELF shared libs. */ if (exec_bfd != NULL && bfd_get_flavour (exec_bfd) != bfd_target_aout_flavour) - disable_breakpoints_in_shlibs (1); + disable_breakpoints_in_shlibs (); while (so_list_head) { |