aboutsummaryrefslogtreecommitdiff
path: root/gdb/corefile.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2019-12-13 15:09:37 -0700
committerTom Tromey <tromey@adacore.com>2019-12-16 14:08:11 -0700
commitd9fa87f4f6e732f5feb41f2fa7dc6faddb1fb627 (patch)
tree04a2a5d7cb398a0c76b0086e83fd9b53a83f69c8 /gdb/corefile.c
parentc0c3707ff46ccfb78ea175dd42d628d8c90dca8b (diff)
downloadgdb-d9fa87f4f6e732f5feb41f2fa7dc6faddb1fb627.zip
gdb-d9fa87f4f6e732f5feb41f2fa7dc6faddb1fb627.tar.gz
gdb-d9fa87f4f6e732f5feb41f2fa7dc6faddb1fb627.tar.bz2
Constify get_exec_file
I noticed that get_exec_file could return a "const char *". This patch implements this change. I couldn't build all the code -- but I did build Linux native and a mingw cross. Consequently, the NTO code has a hack, where it casts away const. I think this can be removed, but that required more work there, and since I couldn't compile it, I felt it best not to try. Let me know what you think. gdb/ChangeLog 2019-12-16 Tom Tromey <tromey@adacore.com> * windows-nat.c (windows_nat_target::attach): Update. * remote.c (extended_remote_target::attach): Update. * procfs.c (procfs_target::attach): Update. * nto-procfs.c (nto_procfs_target::attach): Update. (nto_procfs_target::create_inferior): Update. * inf-ptrace.c (inf_ptrace_target::attach): Update. * gnu-nat.c (gnu_nat_target::attach): Update. (gnu_nat_target::detach): Update. * darwin-nat.c (darwin_nat_target::attach): Update. * corefile.c (get_exec_file): Constify result. Remove extraneous return. * bsd-kvm.c (bsd_kvm_target_open): Update. * gdbsupport/common-inferior.h (get_exec_file): Constify result. gdb/gdbserver/ChangeLog 2019-12-16 Tom Tromey <tromey@adacore.com> * server.c (get_exec_file): Constify result. Change-Id: I29c60f7313a7def0dcb290ff0c2a4c1dea4f981f
Diffstat (limited to 'gdb/corefile.c')
-rw-r--r--gdb/corefile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/corefile.c b/gdb/corefile.c
index f22c154..c4735ad 100644
--- a/gdb/corefile.c
+++ b/gdb/corefile.c
@@ -141,7 +141,7 @@ validate_files (void)
/* See gdbsupport/common-inferior.h. */
-char *
+const char *
get_exec_file (int err)
{
if (exec_filename)
@@ -151,7 +151,6 @@ get_exec_file (int err)
error (_("No executable file specified.\n\
Use the \"file\" or \"exec-file\" command."));
- return NULL;
}