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:
parent
a30bf1f15c
commit
fee354eeef
8 changed files with 21 additions and 9 deletions
|
@ -2087,7 +2087,7 @@ target_detach (const char *args, int from_tty)
|
|||
}
|
||||
|
||||
void
|
||||
target_disconnect (char *args, int from_tty)
|
||||
target_disconnect (const char *args, int from_tty)
|
||||
{
|
||||
/* If we're in breakpoints-always-inserted mode or if breakpoints
|
||||
are global across processes, we have to remove them before
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue