diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:31:01 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:40 -0700 |
commit | ae3bd4315d0b1746d43b132decf3a14f91775061 (patch) | |
tree | b3932ca90ab5460ffd8f319b3d91b7f72cd9a9f5 /gdb/inflow.c | |
parent | e3594fd196c8d629129af9cdc9d00ba08b62a928 (diff) | |
download | gdb-ae3bd4315d0b1746d43b132decf3a14f91775061.zip gdb-ae3bd4315d0b1746d43b132decf3a14f91775061.tar.gz gdb-ae3bd4315d0b1746d43b132decf3a14f91775061.tar.bz2 |
Add target_ops argument to to_terminal_save_ours
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_terminal_save_ours>: Add
argument.
(target_terminal_save_ours): Add argument.
* target.c (debug_to_terminal_save_ours): Add argument.
(update_current_target): Update.
* inflow.c (terminal_save_ours): Add 'self' argument.
* inferior.h (terminal_save_ours): 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 087cc60..fc5a716 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -245,7 +245,7 @@ terminal_init_inferior_with_pgrp (int pgrp) and gdb must be able to restore it correctly. */ void -terminal_save_ours (void) +terminal_save_ours (struct target_ops *self) { if (gdb_has_a_terminal ()) { |