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

* target.h (struct target_ops) <to_terminal_inferior>: Add
argument.
* target.c (target_terminal_inferior): Add argument.
(update_current_target): Update.
* remote.c (remote_terminal_inferior): Add 'self' argument.
* linux-nat.c (linux_nat_terminal_inferior): Add 'self' argument.
* inflow.c (terminal_inferior): Add 'self' argument.
* inferior.h (terminal_inferior): Add 'self' argument.
* go32-nat.c (go32_terminal_inferior): Add 'self' argument.
(go32_terminal_inferior): Add 'self' argument.

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

index 93b0d51db09048f8e5253ce6aa8bcf6dd634f46d..a817e1b175c0c0fe799116b2cfa001a653c2d17f 100644 (file)
@@ -1,3 +1,16 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_terminal_inferior>: Add
+       argument.
+       * target.c (target_terminal_inferior): Add argument.
+       (update_current_target): Update.
+       * remote.c (remote_terminal_inferior): Add 'self' argument.
+       * linux-nat.c (linux_nat_terminal_inferior): Add 'self' argument.
+       * inflow.c (terminal_inferior): Add 'self' argument.
+       * inferior.h (terminal_inferior): Add 'self' argument.
+       * go32-nat.c (go32_terminal_inferior): Add 'self' argument.
+       (go32_terminal_inferior): Add 'self' argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_terminal_init>: Add argument.
index 25267aace2fa26f3bf9bda9d2a95de986a76e1d4..8f911e2e613edf715ddfde542376198814d9a261 100644 (file)
@@ -882,7 +882,7 @@ go32_terminal_info (const char *args, int from_tty)
 }
 
 static void
-go32_terminal_inferior (void)
+go32_terminal_inferior (struct target_ops *self)
 {
   /* Redirect standard handles as child wants them.  */
   errno = 0;
index 41e396ac91e59fc48f2ad74eb54f0c41d62fe43a..5acbee4cb6a20abcd595e50a5c72354d0ad431b2 100644 (file)
@@ -176,7 +176,7 @@ extern void term_info (char *, int);
 
 extern void terminal_ours_for_output (void);
 
-extern void terminal_inferior (void);
+extern void terminal_inferior (struct target_ops *self);
 
 extern void terminal_init_inferior (struct target_ops *self);
 
index 236f8f004db68c7878f4f002cb7220195d45685a..72706f57efb343de551f939e09ad9cf2d3e54b53 100644 (file)
@@ -272,7 +272,7 @@ terminal_init_inferior (struct target_ops *self)
    This is preparation for starting or resuming the inferior.  */
 
 void
-terminal_inferior (void)
+terminal_inferior (struct target_ops *self)
 {
   struct inferior *inf;
   struct terminal_info *tinfo;
index a6118affb99b7398617d789ffafc6f17f30297d8..cd2798ae77634ebfdc078086c8e0c0a54d0ae592 100644 (file)
@@ -4583,16 +4583,16 @@ static int async_terminal_is_ours = 1;
 /* target_terminal_inferior implementation.  */
 
 static void
-linux_nat_terminal_inferior (void)
+linux_nat_terminal_inferior (struct target_ops *self)
 {
   if (!target_is_async_p ())
     {
       /* Async mode is disabled.  */
-      terminal_inferior ();
+      terminal_inferior (self);
       return;
     }
 
-  terminal_inferior ();
+  terminal_inferior (self);
 
   /* Calls to target_terminal_*() are meant to be idempotent.  */
   if (!async_terminal_is_ours)
index 6424304b5b175f29ce2c4b7f87f66d56baade6c4..456cd09e67a4743c9d74b72bfd3b6d5ee77466a3 100644 (file)
@@ -5125,7 +5125,7 @@ Give up (and stop debugging it)? ")))
    is required.  */
 
 static void
-remote_terminal_inferior (void)
+remote_terminal_inferior (struct target_ops *self)
 {
   if (!target_async_permitted)
     /* Nothing to do.  */
index bc3176a03b3c165990840e66b16cdcb9c80fa24c..f3a6b8012e73f25c57334967a84660138fb01dad 100644 (file)
@@ -134,7 +134,7 @@ static int debug_to_can_accel_watchpoint_condition (struct target_ops *self,
 
 static void debug_to_terminal_init (struct target_ops *self);
 
-static void debug_to_terminal_inferior (void);
+static void debug_to_terminal_inferior (struct target_ops *self);
 
 static void debug_to_terminal_ours_for_output (void);
 
@@ -500,7 +500,7 @@ target_terminal_inferior (void)
 
   /* If GDB is resuming the inferior in the foreground, install
      inferior's terminal modes.  */
-  (*current_target.to_terminal_inferior) ();
+  (*current_target.to_terminal_inferior) (&current_target);
 }
 
 static int
@@ -772,7 +772,7 @@ update_current_target (void)
            (void (*) (struct target_ops *))
            target_ignore);
   de_fault (to_terminal_inferior,
-           (void (*) (void))
+           (void (*) (struct target_ops *))
            target_ignore);
   de_fault (to_terminal_ours_for_output,
            (void (*) (void))
@@ -4807,9 +4807,9 @@ debug_to_terminal_init (struct target_ops *self)
 }
 
 static void
-debug_to_terminal_inferior (void)
+debug_to_terminal_inferior (struct target_ops *self)
 {
-  debug_target.to_terminal_inferior ();
+  debug_target.to_terminal_inferior (&debug_target);
 
   fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
 }
index 661b8e91aab634250f639b1af30aad2059d41692..bb68ac0bedfd5bdd7bfc465136a1d15d9c1981d4 100644 (file)
@@ -488,7 +488,7 @@ struct target_ops
     int (*to_masked_watch_num_registers) (struct target_ops *,
                                          CORE_ADDR, CORE_ADDR);
     void (*to_terminal_init) (struct target_ops *);
-    void (*to_terminal_inferior) (void);
+    void (*to_terminal_inferior) (struct target_ops *);
     void (*to_terminal_ours_for_output) (void);
     void (*to_terminal_ours) (void);
     void (*to_terminal_save_ours) (void);