From 4ca51187d21562b6626eea2bd0e45f6b64719dfd Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 22 May 2019 15:41:28 -0400 Subject: Constify target_ops::follow_exec I noticed that target_ops::follow_exec took a "char *" parameter, where "const char *" would be more correct. This patch changes this (and related functions) to be constified. Tested by rebuilding. gdb/ChangeLog 2019-05-22 Tom Tromey * target.c (target_follow_exec): Constify parameter. * target-delegates.c: Rebuild. * remote.c (remote_target::follow_exec): Constify parameter. * infrun.c (follow_exec): Constify parameter. * target.h (struct target_ops) : Constify parameter. (target_follow_exec): Likewise. --- gdb/target-delegates.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gdb/target-delegates.c') diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index cfc0ce0..52034fe 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -59,7 +59,7 @@ struct dummy_target : public target_ops int follow_fork (int arg0, int arg1) override; int insert_exec_catchpoint (int arg0) override; int remove_exec_catchpoint (int arg0) override; - void follow_exec (struct inferior *arg0, char *arg1) override; + void follow_exec (struct inferior *arg0, const char *arg1) override; int set_syscall_catchpoint (int arg0, bool arg1, int arg2, gdb::array_view arg3) override; void mourn_inferior () override; void pass_signals (gdb::array_view arg0) override; @@ -227,7 +227,7 @@ struct debug_target : public target_ops int follow_fork (int arg0, int arg1) override; int insert_exec_catchpoint (int arg0) override; int remove_exec_catchpoint (int arg0) override; - void follow_exec (struct inferior *arg0, char *arg1) override; + void follow_exec (struct inferior *arg0, const char *arg1) override; int set_syscall_catchpoint (int arg0, bool arg1, int arg2, gdb::array_view arg3) override; void mourn_inferior () override; void pass_signals (gdb::array_view arg0) override; @@ -1585,25 +1585,25 @@ debug_target::remove_exec_catchpoint (int arg0) } void -target_ops::follow_exec (struct inferior *arg0, char *arg1) +target_ops::follow_exec (struct inferior *arg0, const char *arg1) { this->beneath ()->follow_exec (arg0, arg1); } void -dummy_target::follow_exec (struct inferior *arg0, char *arg1) +dummy_target::follow_exec (struct inferior *arg0, const char *arg1) { } void -debug_target::follow_exec (struct inferior *arg0, char *arg1) +debug_target::follow_exec (struct inferior *arg0, const char *arg1) { fprintf_unfiltered (gdb_stdlog, "-> %s->follow_exec (...)\n", this->beneath ()->shortname ()); this->beneath ()->follow_exec (arg0, arg1); fprintf_unfiltered (gdb_stdlog, "<- %s->follow_exec (", this->beneath ()->shortname ()); target_debug_print_struct_inferior_p (arg0); fputs_unfiltered (", ", gdb_stdlog); - target_debug_print_char_p (arg1); + target_debug_print_const_char_p (arg1); fputs_unfiltered (")\n", gdb_stdlog); } -- cgit v1.1