aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/netbsd-low.h
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2021-04-12 14:14:06 +0200
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2021-04-12 16:36:25 +0200
commit04977957ecfc723bc4f57460e8e4eed7e6b69f32 (patch)
treef81ccf59234a4a9aa2f325d6b6d31995229a359a /gdbserver/netbsd-low.h
parent9d8f30221b70361930fb82bf81e448b82f36cd58 (diff)
downloadbinutils-04977957ecfc723bc4f57460e8e4eed7e6b69f32.zip
binutils-04977957ecfc723bc4f57460e8e4eed7e6b69f32.tar.gz
binutils-04977957ecfc723bc4f57460e8e4eed7e6b69f32.tar.bz2
gdbserver: constify the 'pid_to_exec_file' target op
gdbserver/ChangeLog: 2021-04-12 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> * target.h (class process_stratum_target) <pid_to_exec_file>: Constify the return type. Update the definition/references below. * target.cc (process_stratum_target::pid_to_exec_file) * linux-low.h (class linux_process_target) <pid_to_exec_file> * linux-low.cc (linux_process_target::pid_to_exec_file) * netbsd-low.h (class netbsd_process_target) <pid_to_exec_file> * netbsd-low.cc (netbsd_process_target::pid_to_exec_file) * server.cc (handle_qxfer_exec_file)
Diffstat (limited to 'gdbserver/netbsd-low.h')
-rw-r--r--gdbserver/netbsd-low.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbserver/netbsd-low.h b/gdbserver/netbsd-low.h
index 9c341c7..b98588f 100644
--- a/gdbserver/netbsd-low.h
+++ b/gdbserver/netbsd-low.h
@@ -121,7 +121,7 @@ public:
bool supports_pid_to_exec_file () override;
- char *pid_to_exec_file (int pid) override;
+ const char *pid_to_exec_file (int pid) override;
const char *thread_name (ptid_t thread) override;