diff options
author | Tom Tromey <tromey@redhat.com> | 2012-02-16 21:07:20 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-02-16 21:07:20 +0000 |
commit | 7dcd53a07458941ccf02e280b42f9d68dfb976b0 (patch) | |
tree | d8826dcdbcc1399f5700f571362fc3c257455006 /gdb/solib.c | |
parent | 7b5de7eeacf1f08bc31562510bab508ebcaae3ee (diff) | |
download | gdb-7dcd53a07458941ccf02e280b42f9d68dfb976b0.zip gdb-7dcd53a07458941ccf02e280b42f9d68dfb976b0.tar.gz gdb-7dcd53a07458941ccf02e280b42f9d68dfb976b0.tar.bz2 |
* 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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 84b9019..656e8df 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; |