diff options
author | Tom Tromey <tromey@adacore.com> | 2019-05-22 15:41:28 -0400 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-05-22 15:41:28 -0400 |
commit | 4ca51187d21562b6626eea2bd0e45f6b64719dfd (patch) | |
tree | 495ae47403983a234de936f10b05289268195175 /gdb/target.h | |
parent | 18125b163947bfd0c358d4a5acf4e0e3b43b64cf (diff) | |
download | gdb-4ca51187d21562b6626eea2bd0e45f6b64719dfd.zip gdb-4ca51187d21562b6626eea2bd0e45f6b64719dfd.tar.gz gdb-4ca51187d21562b6626eea2bd0e45f6b64719dfd.tar.bz2 |
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 <tromey@adacore.com>
* 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) <follow_exec>: Constify parameter.
(target_follow_exec): Likewise.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h index 9078a42..323357c 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -622,7 +622,7 @@ struct target_ops TARGET_DEFAULT_RETURN (1); virtual int remove_exec_catchpoint (int) TARGET_DEFAULT_RETURN (1); - virtual void follow_exec (struct inferior *, char *) + virtual void follow_exec (struct inferior *, const char *) TARGET_DEFAULT_IGNORE (); virtual int set_syscall_catchpoint (int, bool, int, gdb::array_view<const int>) @@ -1637,7 +1637,7 @@ int target_follow_fork (int follow_child, int detach_fork); /* Handle the target-specific bookkeeping required when the inferior makes an exec call. INF is the exec'd inferior. */ -void target_follow_exec (struct inferior *inf, char *execd_pathname); +void target_follow_exec (struct inferior *inf, const char *execd_pathname); /* On some targets, we can catch an inferior exec event when it occurs. These functions insert/remove an already-created |