aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2011-11-11 00:43:04 +0000
committerDoug Evans <dje@google.com>2011-11-11 00:43:04 +0000
commit74e2f255485844a9662d354ac13c4c04dad92c5c (patch)
tree375d5413abbaad0cefbeeb496ec0006e23456c41 /gdb/mi
parent3d88bd92001ccb331bdb8cfb462141636837ac59 (diff)
downloadbinutils-74e2f255485844a9662d354ac13c4c04dad92c5c.zip
binutils-74e2f255485844a9662d354ac13c4c04dad92c5c.tar.gz
binutils-74e2f255485844a9662d354ac13c4c04dad92c5c.tar.bz2
* dwarf2read.c (dw2_map_symbol_filenames): New parameter
`need_fullname'. * psymtab.c (map_symbol_filenames_psymtab): Ditto. (map_partial_symbol_filenames): Ditto. All callers updated. * psymtab.h (map_partial_symbol_filenames): Update prototype. * symfile.h (struct quick_symbol_functions, map_symbol_filenames): New parameter need_fullname.
Diffstat (limited to 'gdb/mi')
-rw-r--r--gdb/mi/mi-cmd-file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/mi/mi-cmd-file.c b/gdb/mi/mi-cmd-file.c
index 22cb995..ff86588 100644
--- a/gdb/mi/mi-cmd-file.c
+++ b/gdb/mi/mi-cmd-file.c
@@ -109,7 +109,8 @@ mi_cmd_file_list_exec_source_files (char *command, char **argv, int argc)
ui_out_end (uiout, ui_out_type_tuple);
}
- map_partial_symbol_filenames (print_partial_file_name, NULL);
+ map_partial_symbol_filenames (print_partial_file_name, NULL,
+ 1 /*need_fullname*/);
ui_out_end (uiout, ui_out_type_list);
}