Add target_ops argument to to_terminal_info
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 04:31:14 +0000 (21:31 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:45:41 +0000 (07:45 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target.h (struct target_ops) <to_terminal_info>: Add argument.
(target_terminal_info): Add argument.
* target.c (debug_to_terminal_info): Add argument.
(default_terminal_info): Likewise.
* inflow.c (child_terminal_info): Add 'self' argument.
* inferior.h (child_terminal_info): Add 'self' argument.
* go32-nat.c (go32_terminal_info): Add 'self' argument.

gdb/ChangeLog
gdb/go32-nat.c
gdb/inferior.h
gdb/inflow.c
gdb/target.c
gdb/target.h

index 6447a3945a3ce1ef46979b8f01ae2cd855b27606..e53c7e602beeffe2424cd9e22fb7cf7c0bb5e222 100644 (file)
@@ -1,3 +1,13 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_terminal_info>: Add argument.
+       (target_terminal_info): Add argument.
+       * target.c (debug_to_terminal_info): Add argument.
+       (default_terminal_info): Likewise.
+       * inflow.c (child_terminal_info): Add 'self' argument.
+       * inferior.h (child_terminal_info): Add 'self' argument.
+       * go32-nat.c (go32_terminal_info): Add 'self' argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_terminal_save_ours>: Add
index 4e0b474797da23a34343399a46ae8e6e0072306e..75f6a3ed12588056cbcddd18b7faa3cc9af192f7 100644 (file)
@@ -852,7 +852,7 @@ go32_terminal_init (struct target_ops *self)
 }
 
 static void
-go32_terminal_info (const char *args, int from_tty)
+go32_terminal_info (struct target_ops *self, const char *args, int from_tty)
 {
   printf_unfiltered ("Inferior's terminal is in %s mode.\n",
                     !inf_mode_valid
index 938933f6c2b7ed49775de3263f646378207e4034..43e035b8e9c0e25bf021d0b0e38c08ceb38ab79f 100644 (file)
@@ -170,7 +170,7 @@ extern void default_print_registers_info (struct gdbarch *gdbarch,
                                          struct frame_info *frame,
                                          int regnum, int all);
 
-extern void child_terminal_info (const char *, int);
+extern void child_terminal_info (struct target_ops *self, const char *, int);
 
 extern void term_info (char *, int);
 
index fc5a716a38a467dd2b5fd41247c8a7116cd862c0..09623aba85ae882b9fd6f38dcb7338e182c59095 100644 (file)
@@ -562,7 +562,7 @@ term_info (char *arg, int from_tty)
 }
 
 void
-child_terminal_info (const char *args, int from_tty)
+child_terminal_info (struct target_ops *self, const char *args, int from_tty)
 {
   struct inferior *inf;
   struct terminal_info *tinfo;
index 9a0dfc3799ed32eb056c7a349a230daf1465901c..97764267c94d45a627fa76a7fa9317d1c91b4a1b 100644 (file)
@@ -47,7 +47,7 @@
 
 static void target_info (char *, int);
 
-static void default_terminal_info (const char *, int);
+static void default_terminal_info (struct target_ops *, const char *, int);
 
 static int default_watchpoint_addr_within_range (struct target_ops *,
                                                 CORE_ADDR, CORE_ADDR, int);
@@ -525,7 +525,7 @@ noprocess (void)
 }
 
 static void
-default_terminal_info (const char *args, int from_tty)
+default_terminal_info (struct target_ops *self, const char *args, int from_tty)
 {
   printf_unfiltered (_("No saved terminal information.\n"));
 }
@@ -4839,9 +4839,10 @@ debug_to_terminal_save_ours (struct target_ops *self)
 }
 
 static void
-debug_to_terminal_info (const char *arg, int from_tty)
+debug_to_terminal_info (struct target_ops *self,
+                       const char *arg, int from_tty)
 {
-  debug_target.to_terminal_info (arg, from_tty);
+  debug_target.to_terminal_info (&debug_target, arg, from_tty);
 
   fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
                      from_tty);
index c4a52fb7b0bebfd44f9f115c74554501921705ea..884716a24e4f6b5f65b5c3d4a2e5727d7a9fba50 100644 (file)
@@ -492,7 +492,7 @@ struct target_ops
     void (*to_terminal_ours_for_output) (struct target_ops *);
     void (*to_terminal_ours) (struct target_ops *);
     void (*to_terminal_save_ours) (struct target_ops *);
-    void (*to_terminal_info) (const char *, int);
+    void (*to_terminal_info) (struct target_ops *, const char *, int);
     void (*to_kill) (struct target_ops *);
     void (*to_load) (char *, int);
     void (*to_create_inferior) (struct target_ops *, 
@@ -1259,7 +1259,7 @@ extern void target_terminal_inferior (void);
    exists.  */
 
 #define target_terminal_info(arg, from_tty) \
-     (*current_target.to_terminal_info) (arg, from_tty)
+     (*current_target.to_terminal_info) (&current_target, arg, from_tty)
 
 /* Kill the inferior process.   Make it go away.  */