diff options
author | 2013-12-17 21:30:23 -0700 | |
---|---|---|
committer | 2014-02-19 07:45:38 -0700 | |
commit | d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce (patch) | |
tree | bd76bf9520653e001b9d4353e5e3185961cc6e89 /gdb/inflow.c | |
parent | Add target_ops argument to to_terminal_init (diff) | |
download | binutils-gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.tar.gz binutils-gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.tar.bz2 binutils-gdb-d2f640d43aee0be2d12eb082ac3d48d99ab5a1ce.zip |
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 236f8f004db..72706f57efb 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; |