diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:30:23 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:38 -0700 |
commit | d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce (patch) | |
tree | bd76bf9520653e001b9d4353e5e3185961cc6e89 /gdb/remote.c | |
parent | c42bf2866f330d7844917c40cf5886333fa3ea24 (diff) | |
download | gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.zip gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.tar.gz gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.tar.bz2 |
Add target_ops argument to to_terminal_inferior
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_terminal_inferior>: Add
argument.
* target.c (target_terminal_inferior): Add argument.
(update_current_target): Update.
* remote.c (remote_terminal_inferior): Add 'self' argument.
* linux-nat.c (linux_nat_terminal_inferior): Add 'self' argument.
* inflow.c (terminal_inferior): Add 'self' argument.
* inferior.h (terminal_inferior): Add 'self' argument.
* go32-nat.c (go32_terminal_inferior): Add 'self' argument.
(go32_terminal_inferior): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 6424304..456cd09 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5125,7 +5125,7 @@ Give up (and stop debugging it)? "))) is required. */ static void -remote_terminal_inferior (void) +remote_terminal_inferior (struct target_ops *self) { if (!target_async_permitted) /* Nothing to do. */ |