summaryrefslogtreecommitdiff
path: root/gdb/solib.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-02-16 21:07:18 +0000
committerTom Tromey <tromey@redhat.com>2012-02-16 21:07:18 +0000
commit4783d45e523e077cd8d0e3d577dc64a6b1a809c4 (patch)
treeb15727ea5eeece03aea8d73c581c05b87710d205 /gdb/solib.c
parent1c7ba959058c33d53d39b7551f28ae11fe897781 (diff)
downloadgdb-4783d45e523e077cd8d0e3d577dc64a6b1a809c4.tar.gz
* symfile.c (symbol_file_add_main_1): Use inferior's
symfile_flags. * solib.c (solib_read_symbols): Use inferior's symfile_flags. * linux-nat.c (linux_child_follow_fork): Set symfile_flags on inferior. * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on inferior. (follow_exec): Use inferior's symfile_flags. * inferior.h (struct inferior) <symfile_flags>: New field.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r--gdb/solib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/solib.c b/gdb/solib.c
index 84b90190c13..656e8dfa551 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -592,6 +592,8 @@ solib_read_symbols (struct so_list *so, int flags)
{
volatile struct gdb_exception e;
+ flags |= current_inferior ()->symfile_flags;
+
TRY_CATCH (e, RETURN_MASK_ERROR)
{
struct section_addr_info *sap;