aboutsummaryrefslogtreecommitdiff
path: root/gdb/inferior.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-02-16 21:07:20 +0000
committerTom Tromey <tromey@redhat.com>2012-02-16 21:07:20 +0000
commit7dcd53a07458941ccf02e280b42f9d68dfb976b0 (patch)
treed8826dcdbcc1399f5700f571362fc3c257455006 /gdb/inferior.h
parent7b5de7eeacf1f08bc31562510bab508ebcaae3ee (diff)
downloadgdb-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/inferior.h')
-rw-r--r--gdb/inferior.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h
index 7857cbf..65abf26 100644
--- a/gdb/inferior.h
+++ b/gdb/inferior.h
@@ -516,6 +516,11 @@ struct inferior
if any catching is necessary. */
int total_syscalls_count;
+ /* Default flags to pass to the symbol reading functions. These are
+ used whenever a new objfile is created. The valid values come
+ from enum symfile_add_flags. */
+ int symfile_flags;
+
/* Per inferior data-pointers required by other GDB modules. */
void **data;
unsigned num_data;