diff options
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 9f6375e..6c0730a 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -115,10 +115,6 @@ extern int disable_randomization; extern void generic_mourn_inferior (void); -extern void terminal_save_ours (struct target_ops *self); - -extern void terminal_ours (struct target_ops *self); - extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf); @@ -164,13 +160,17 @@ extern void child_terminal_info (struct target_ops *self, const char *, int); extern void term_info (char *, int); -extern void terminal_ours_for_output (struct target_ops *self); +extern void child_terminal_save_ours (struct target_ops *self); + +extern void child_terminal_ours (struct target_ops *self); + +extern void child_terminal_ours_for_output (struct target_ops *self); -extern void terminal_inferior (struct target_ops *self); +extern void child_terminal_inferior (struct target_ops *self); -extern void terminal_init_inferior (struct target_ops *self); +extern void child_terminal_init (struct target_ops *self); -extern void terminal_init_inferior_with_pgrp (int pgrp); +extern void child_terminal_init_with_pgrp (int pgrp); /* From fork-child.c */ |