aboutsummaryrefslogtreecommitdiff
path: root/gdb/objfiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r--gdb/objfiles.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index 5cf7331..252b52e 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -932,14 +932,13 @@ extern bool objfile_has_full_symbols (objfile *objfile);
extern bool objfile_has_symbols (objfile *objfile);
-/* Return true if any objfile of the current program space has partial
- symbols. */
+/* Return true if any objfile of PSPACE has partial symbols. */
-extern bool have_partial_symbols ();
+extern bool have_partial_symbols (program_space *pspace);
-/* Return true if any objfile of the current program space has full symbols. */
+/* Return true if any objfile of PSPACE has full symbols. */
-extern bool have_full_symbols ();
+extern bool have_full_symbols (program_space *pspace);
extern void objfile_set_sym_fns (struct objfile *objfile,
const struct sym_fns *sf);
@@ -966,10 +965,9 @@ extern void objfile_purge_solibs (program_space *pspace);
/* Functions for dealing with the minimal symbol table, really a misc
address<->symbol mapping for things we don't have debug symbols for. */
-/* Return true if any objfile of the current program space has minimal
- symbols. */
+/* Return true if any objfile of PSPACE has minimal symbols. */
-extern bool have_minimal_symbols ();
+extern bool have_minimal_symbols (program_space *pspace);
extern struct obj_section *find_pc_section (CORE_ADDR pc);