Add target_ops argument to to_terminal_ours_for_output
2014-02-19 Pedro Alves <palves@redhat.com> Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_terminal_ours_for_output>: Add argument. (target_terminal_ours_for_output): Add argument. * target.c (debug_to_terminal_ours_for_output): Add argument. (update_current_target): Update. * inflow.c (terminal_ours_for_output): Add 'self' argument. * inferior.h (terminal_ours_for_output): Add 'self' argument. * go32-nat.c (go32_terminal_ours): Add 'self' argument.
This commit is contained in:
parent
d2f640d43a
commit
2e1e1a193c
5 changed files with 20 additions and 8 deletions
|
@ -489,7 +489,7 @@ struct target_ops
|
|||
CORE_ADDR, CORE_ADDR);
|
||||
void (*to_terminal_init) (struct target_ops *);
|
||||
void (*to_terminal_inferior) (struct target_ops *);
|
||||
void (*to_terminal_ours_for_output) (void);
|
||||
void (*to_terminal_ours_for_output) (struct target_ops *);
|
||||
void (*to_terminal_ours) (void);
|
||||
void (*to_terminal_save_ours) (void);
|
||||
void (*to_terminal_info) (const char *, int);
|
||||
|
@ -1238,7 +1238,7 @@ extern void target_terminal_inferior (void);
|
|||
should be called to get back to a normal state of affairs. */
|
||||
|
||||
#define target_terminal_ours_for_output() \
|
||||
(*current_target.to_terminal_ours_for_output) ()
|
||||
(*current_target.to_terminal_ours_for_output) (¤t_target)
|
||||
|
||||
/* Put our terminal settings into effect.
|
||||
First record the inferior's terminal settings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue