diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-25 08:03:33 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-25 08:03:33 +0000 |
commit | f35a17b5424e3d92d168c2a30d85940294c22d9a (patch) | |
tree | d5435641cea99cddd3e3a08eb36289edf2a9ddf5 /gdb/doc | |
parent | c2c899ab4bd09a27f48dc6029ccd426750ae5e9f (diff) | |
download | gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.zip gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.tar.gz gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.tar.bz2 |
gdb/
* ada-lang.c (is_known_support_routine): New variable fullname. Use
access call to verify the symtab_to_fullname result.
* breakpoint.c (print_breakpoint_location, update_static_tracepoint):
Remove NULL check of symtab_to_fullname result.
* cli/cli-cmds.c (edit_command): Likewise.
* mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
(mi_cmd_file_list_exec_source_files): Likewise.
* python/py-symtab.c (stpy_fullname): Likewise.
* source.c (symtab_to_fullname): Update function comment. Rename
variable r to fd, move it to inner block. Always provide non-NULL
result.
(print_source_lines_base): Remove NULL check of symtab_to_fullname
result.
* stack.c (print_frame): Likewise.
* symtab.c (iterate_over_some_symtabs, find_line_symtab, sources_info):
Likewise.
* tracepoint.c (print_one_static_tracepoint_marker): Likewise.
gdb/doc/
* gdb.texinfo (GDB/MI Data Manipulation) (fullname): Make it always
present.
(GDB/MI File Commands) (-file-list-exec-source-files): Make the
fullname output always present.
gdb/testsuite/
* gdb.mi/mi-fullname-deleted.exp: New file.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 44077d0..4c96eae 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,10 @@ +2012-12-25 Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdb.texinfo (GDB/MI Data Manipulation) (fullname): Make it always + present. + (GDB/MI File Commands) (-file-list-exec-source-files): Make the + fullname output always present. + 2012-12-23 Pierre Muller <muller@sourceware.org> * gdbint.texinfo (Function prototypes): Require use of "extern" diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 5abcd93..c1ba745 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -31086,9 +31086,13 @@ file name or a relative file name depending on the compile command used. @item fullname -This field is optional. If it is present it will contain an absolute -file name of @samp{file}. If this field is not present then -@value{GDBN} was unable to determine the absolute file name. +Absolute file name of @samp{file}. It is converted to a canonical form +using the source file search path +(@pxref{Source Path, ,Specifying Source Directories}) +and after resolving all the symbolic links. + +If the source file is not found this field will contain the path as +present in the debug information. @item line_asm_insn This is a list of tuples containing the disassembly for @samp{line} in @@ -32269,8 +32273,8 @@ The @value{GDBN} equivalent is @samp{info source} List the source files for the current executable. -It will always output the filename, but only when @value{GDBN} can find -the absolute file name of a source file, will it output the fullname. +It will always output both the filename and fullname (absolute file +name) of a source file. @subsubheading @value{GDBN} Command |