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/inflow.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/inflow.c')
-rw-r--r-- | gdb/inflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 236f8f0..72706f5 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -272,7 +272,7 @@ terminal_init_inferior (struct target_ops *self) This is preparation for starting or resuming the inferior. */ void -terminal_inferior (void) +terminal_inferior (struct target_ops *self) { struct inferior *inf; struct terminal_info *tinfo; |