diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-08-28 17:52:03 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-08-28 17:52:03 +0000 |
commit | 1f0c498857f8ece90893be592ee2e4f967a6d999 (patch) | |
tree | 92f1b9e8ca3fbcbc7fc0f0376ef8cb839393978c /gdb/exec.h | |
parent | 602e3198bc03297b7d9cb34ed3838272254eba1f (diff) | |
download | binutils-gdb-1f0c498857f8ece90893be592ee2e4f967a6d999.tar.gz |
PR gdb/15415
gdb/
2013-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
PR gdb/15415
* corefile.c (get_exec_file): Use exec_filename.
* defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
* exec.c (exec_close): Free EXEC_FILENAME.
(exec_file_attach): New variable canonical_pathname. Use
OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
EXEC_FILENAME.
* exec.h (exec_filename): New.
* inferior.c (print_inferior, inferior_command): Use
PSPACE_EXEC_FILENAME.
* mi/mi-main.c (print_one_inferior): Likewise.
* progspace.c (clone_program_space, print_program_space): Likewise.
* progspace.h (struct program_space): New field pspace_exec_filename.
* source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
gdb/testsuite/
2013-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
PR gdb/15415
* gdb.base/argv0-symlink.c: New file.
* gdb.base/argv0-symlink.exp: New file.
Diffstat (limited to 'gdb/exec.h')
-rw-r--r-- | gdb/exec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/exec.h b/gdb/exec.h index 21ccba8c68b..39d5ea5d749 100644 --- a/gdb/exec.h +++ b/gdb/exec.h @@ -32,6 +32,7 @@ extern struct target_ops exec_ops; #define exec_bfd current_program_space->ebfd #define exec_bfd_mtime current_program_space->ebfd_mtime +#define exec_filename current_program_space->pspace_exec_filename /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR. Returns 0 if OK, 1 on error. */ |