public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] gdbserver: constify the 'pid_to_exec_file' target op
@ 2021-04-12 12:30 Tankut Baris Aktemur
  2021-04-12 14:10 ` Simon Marchi
  0 siblings, 1 reply; 3+ messages in thread
From: Tankut Baris Aktemur @ 2021-04-12 12:30 UTC (permalink / raw)
  To: gdb-patches

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)
---
 gdbserver/linux-low.cc  | 2 +-
 gdbserver/linux-low.h   | 2 +-
 gdbserver/netbsd-low.cc | 4 ++--
 gdbserver/netbsd-low.h  | 2 +-
 gdbserver/server.cc     | 2 +-
 gdbserver/target.cc     | 2 +-
 gdbserver/target.h      | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc
index 0baac013129..251a54f5c4a 100644
--- a/gdbserver/linux-low.cc
+++ b/gdbserver/linux-low.cc
@@ -6265,7 +6265,7 @@ linux_process_target::supports_pid_to_exec_file ()
   return true;
 }
 
-char *
+const char *
 linux_process_target::pid_to_exec_file (int pid)
 {
   return linux_proc_pid_to_exec_file (pid);
diff --git a/gdbserver/linux-low.h b/gdbserver/linux-low.h
index be97526ced7..d59ad386bd5 100644
--- a/gdbserver/linux-low.h
+++ b/gdbserver/linux-low.h
@@ -292,7 +292,7 @@ class linux_process_target : public process_stratum_target
 
   bool supports_pid_to_exec_file () override;
 
-  char *pid_to_exec_file (int pid) override;
+  const char *pid_to_exec_file (int pid) override;
 
   bool supports_multifs () override;
 
diff --git a/gdbserver/netbsd-low.cc b/gdbserver/netbsd-low.cc
index 38ded94d909..84e34d0e065 100644
--- a/gdbserver/netbsd-low.cc
+++ b/gdbserver/netbsd-low.cc
@@ -1193,10 +1193,10 @@ netbsd_process_target::supports_qxfer_libraries_svr4 ()
 /* Return the name of a file that can be opened to get the symbols for
    the child process identified by PID.  */
 
-char *
+const char *
 netbsd_process_target::pid_to_exec_file (pid_t pid)
 {
-  return const_cast<char *> (netbsd_nat::pid_to_exec_file (pid));
+  return netbsd_nat::pid_to_exec_file (pid);
 }
 
 /* Implementation of the target_ops method "supports_pid_to_exec_file".  */
diff --git a/gdbserver/netbsd-low.h b/gdbserver/netbsd-low.h
index 9c341c71cf9..b98588fdf33 100644
--- a/gdbserver/netbsd-low.h
+++ b/gdbserver/netbsd-low.h
@@ -121,7 +121,7 @@ class netbsd_process_target : public process_stratum_target
 
   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;
 
diff --git a/gdbserver/server.cc b/gdbserver/server.cc
index 2a443305691..156fd4333df 100644
--- a/gdbserver/server.cc
+++ b/gdbserver/server.cc
@@ -1466,7 +1466,7 @@ handle_qxfer_exec_file (const char *annex,
 			gdb_byte *readbuf, const gdb_byte *writebuf,
 			ULONGEST offset, LONGEST len)
 {
-  char *file;
+  const char *file;
   ULONGEST pid;
   int total_len;
 
diff --git a/gdbserver/target.cc b/gdbserver/target.cc
index 1f2159714b3..5ec3e5cce9f 100644
--- a/gdbserver/target.cc
+++ b/gdbserver/target.cc
@@ -783,7 +783,7 @@ process_stratum_target::supports_pid_to_exec_file ()
   return false;
 }
 
-char *
+const char *
 process_stratum_target::pid_to_exec_file (int pid)
 {
   gdb_assert_not_reached ("target op pid_to_exec_file not supported");
diff --git a/gdbserver/target.h b/gdbserver/target.h
index 2831a6ce7c0..769d8281176 100644
--- a/gdbserver/target.h
+++ b/gdbserver/target.h
@@ -440,7 +440,7 @@ class process_stratum_target
      character string containing the pathname is returned.  This
      string should be copied into a buffer by the client if the string
      will not be immediately used, or if it must persist.  */
-  virtual char *pid_to_exec_file (int pid);
+  virtual const char *pid_to_exec_file (int pid);
 
   /* Return true if any of the multifs ops is supported.  */
   virtual bool supports_multifs ();
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] gdbserver: constify the 'pid_to_exec_file' target op
  2021-04-12 12:30 [PATCH] gdbserver: constify the 'pid_to_exec_file' target op Tankut Baris Aktemur
@ 2021-04-12 14:10 ` Simon Marchi
  2021-04-12 14:38   ` Aktemur, Tankut Baris
  0 siblings, 1 reply; 3+ messages in thread
From: Simon Marchi @ 2021-04-12 14:10 UTC (permalink / raw)
  To: Tankut Baris Aktemur, gdb-patches

On 2021-04-12 8:30 a.m., Tankut Baris Aktemur via Gdb-patches wrote:
> diff --git a/gdbserver/server.cc b/gdbserver/server.cc
> index 2a443305691..156fd4333df 100644
> --- a/gdbserver/server.cc
> +++ b/gdbserver/server.cc
> @@ -1466,7 +1466,7 @@ handle_qxfer_exec_file (const char *annex,
>  			gdb_byte *readbuf, const gdb_byte *writebuf,
>  			ULONGEST offset, LONGEST len)
>  {
> -  char *file;
> +  const char *file;

Since you are touching this, let's move the declaration to where the
assignment is done.

Otherwise, LGTM, thanks.

Simon

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] gdbserver: constify the 'pid_to_exec_file' target op
  2021-04-12 14:10 ` Simon Marchi
@ 2021-04-12 14:38   ` Aktemur, Tankut Baris
  0 siblings, 0 replies; 3+ messages in thread
From: Aktemur, Tankut Baris @ 2021-04-12 14:38 UTC (permalink / raw)
  To: Simon Marchi, gdb-patches

On Monday, April 12, 2021 4:10 PM, Simon Marchi wrote:
> On 2021-04-12 8:30 a.m., Tankut Baris Aktemur via Gdb-patches wrote:
> > diff --git a/gdbserver/server.cc b/gdbserver/server.cc
> > index 2a443305691..156fd4333df 100644
> > --- a/gdbserver/server.cc
> > +++ b/gdbserver/server.cc
> > @@ -1466,7 +1466,7 @@ handle_qxfer_exec_file (const char *annex,
> >  			gdb_byte *readbuf, const gdb_byte *writebuf,
> >  			ULONGEST offset, LONGEST len)
> >  {
> > -  char *file;
> > +  const char *file;
> 
> Since you are touching this, let's move the declaration to where the
> assignment is done.
> 
> Otherwise, LGTM, thanks.
> 
> Simon

Pushed with that change.  Thanks.

-Baris
Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-12 14:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-12 12:30 [PATCH] gdbserver: constify the 'pid_to_exec_file' target op Tankut Baris Aktemur
2021-04-12 14:10 ` Simon Marchi
2021-04-12 14:38   ` Aktemur, Tankut Baris

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).