diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:30:10 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:37 -0700 |
commit | c42bf2866f330d7844917c40cf5886333fa3ea24 (patch) | |
tree | ae1d3c80f5edd76423e0f273b1100d0b2c62fbe8 /gdb/inflow.c | |
parent | c3a5ff89630f46c52ca43ee7e73933687815ca18 (diff) | |
download | fsf-binutils-gdb-c42bf2866f330d7844917c40cf5886333fa3ea24.zip fsf-binutils-gdb-c42bf2866f330d7844917c40cf5886333fa3ea24.tar.gz fsf-binutils-gdb-c42bf2866f330d7844917c40cf5886333fa3ea24.tar.bz2 |
Add target_ops argument to to_terminal_init
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_terminal_init>: Add argument.
(target_terminal_init): Add argument.
* target.c (debug_to_terminal_init): Add argument.
(update_current_target): Update.
* inflow.c (terminal_init_inferior): Add 'self' argument.
* inferior.h (terminal_init_inferior): Add 'self' argument.
* go32-nat.c (go32_terminal_init): Add 'self' argument.
* gnu-nat.c (gnu_terminal_init_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 5503a42..236f8f0 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -255,7 +255,7 @@ terminal_save_ours (void) } void -terminal_init_inferior (void) +terminal_init_inferior (struct target_ops *self) { #ifdef PROCESS_GROUP_TYPE /* This is for Lynx, and should be cleaned up by having Lynx be a separate |