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.
This commit is contained in:
Tom Tromey 2014-06-06 13:26:53 -06:00
parent a30bf1f15c
commit fee354eeef
8 changed files with 21 additions and 9 deletions

View file

@ -57,7 +57,7 @@ extern int record_read_memory (struct gdbarch *gdbarch,
extern void cmd_record_goto (char *arg, int from_tty);
/* The default "to_disconnect" target method for record targets. */
extern void record_disconnect (struct target_ops *, char *, int);
extern void record_disconnect (struct target_ops *, const char *, int);
/* The default "to_detach" target method for record targets. */
extern void record_detach (struct target_ops *, const char *, int);