diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-06 13:26:53 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-06-16 10:29:17 -0600 |
commit | fee354eeef0b5bb9b1b799e2ce313fc805b2af1a (patch) | |
tree | dff86f4f8779dc5d787c9dd24a802ef66b0ce46c /gdb/target.h | |
parent | a30bf1f15c51b82a0134713bc44175cda296d3ae (diff) | |
download | binutils-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.tar.gz binutils-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.tar.bz2 binutils-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.zip |
constify to_disconnect
This constifies an parameter of to_disconnect and updates
target_disconnect as well.
2014-06-16 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_disconnect>: Make parameter
const.
(target_disconnect): Update.
* target.c (target_disconnect): Make "args" const.
* target-delegates.c: Rebuild.
* remote.c (remote_disconnect): Update.
* record.h (record_disconnect): Update.
* record.c (record_disconnect): Update.
* inf-child.c (inf_child_disconnect): Update.
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 87d2a83027e..7f9714e9156 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -414,7 +414,7 @@ struct target_ops TARGET_DEFAULT_IGNORE (); void (*to_detach) (struct target_ops *ops, const char *, int) TARGET_DEFAULT_IGNORE (); - void (*to_disconnect) (struct target_ops *, char *, int) + void (*to_disconnect) (struct target_ops *, const char *, int) TARGET_DEFAULT_NORETURN (tcomplain ()); void (*to_resume) (struct target_ops *, ptid_t, int, enum gdb_signal) TARGET_DEFAULT_NORETURN (noprocess ()); @@ -1177,7 +1177,7 @@ extern void target_detach (const char *, int); /* Disconnect from the current target without resuming it (leaving it waiting for a debugger). */ -extern void target_disconnect (char *, int); +extern void target_disconnect (const char *, int); /* Resume execution of the target process PTID (or a group of threads). STEP says whether to single-step or to run free; SIGGNAL |