aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:30:23 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:38 -0700
commitd2f640d43aee0be2d12eb082ac3d48d99ab5a1ce (patch)
treebd76bf9520653e001b9d4353e5e3185961cc6e89 /gdb/target.h
parentc42bf2866f330d7844917c40cf5886333fa3ea24 (diff)
downloadgdb-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/target.h')
-rw-r--r--gdb/target.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 661b8e9..bb68ac0 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -488,7 +488,7 @@ struct target_ops
int (*to_masked_watch_num_registers) (struct target_ops *,
CORE_ADDR, CORE_ADDR);
void (*to_terminal_init) (struct target_ops *);
- void (*to_terminal_inferior) (void);
+ void (*to_terminal_inferior) (struct target_ops *);
void (*to_terminal_ours_for_output) (void);
void (*to_terminal_ours) (void);
void (*to_terminal_save_ours) (void);