* inflow.c (child_terminal_inferior): Add comment.
authorDoug Evans <dje@google.com>
Thu, 31 Jul 2014 18:48:24 +0000 (11:48 -0700)
committerDoug Evans <dje@google.com>
Thu, 31 Jul 2014 18:48:24 +0000 (11:48 -0700)
(child_terminal_ours_for_output): Add comment.
(child_terminal_ours): Add comment.
* linux-nat.c (linux_nat_terminal_inferior): Add comment.
(linux_nat_terminal_ours): Add comment.

gdb/ChangeLog
gdb/inflow.c
gdb/linux-nat.c

index 572cd44a2994977f5cbf0e9160d467e9d4ee0c17..e494a2aab34bf697337d8122c7d8f76663c780ea 100644 (file)
@@ -1,3 +1,11 @@
+2014-07-31  Doug Evans  <dje@google.com>
+
+       * inflow.c (child_terminal_inferior): Add comment.
+       (child_terminal_ours_for_output): Add comment.
+       (child_terminal_ours): Add comment.
+       * linux-nat.c (linux_nat_terminal_inferior): Add comment.
+       (linux_nat_terminal_ours): Add comment.
+
 2014-07-31  Gary Benson  <gbenson@redhat.com>
 
        * common/btrace-common.h: Do not include defs.h or server.h.
index 5f81de21c1ebf80d78bf0e76b47ac9e7c427b536..f13efeab88d7952e1eb3dc6703805b093d234eee 100644 (file)
@@ -267,7 +267,11 @@ child_terminal_init (struct target_ops *self)
 }
 
 /* Put the inferior's terminal settings into effect.
-   This is preparation for starting or resuming the inferior.  */
+   This is preparation for starting or resuming the inferior.
+
+   N.B. Targets that want to use this with async support must build that
+   support on top of this (e.g., the caller still needs to remove stdin
+   from the event loop).  E.g., see linux_nat_terminal_inferior.  */
 
 void
 child_terminal_inferior (struct target_ops *self)
@@ -348,7 +352,10 @@ child_terminal_inferior (struct target_ops *self)
    so that no input is discarded.
 
    After doing this, either terminal_ours or terminal_inferior
-   should be called to get back to a normal state of affairs.  */
+   should be called to get back to a normal state of affairs.
+
+   N.B. The implementation is (currently) no different than
+   child_terminal_ours.  See child_terminal_ours_1.  */
 
 void
 child_terminal_ours_for_output (struct target_ops *self)
@@ -358,7 +365,11 @@ child_terminal_ours_for_output (struct target_ops *self)
 
 /* Put our terminal settings into effect.
    First record the inferior's terminal settings
-   so they can be restored properly later.  */
+   so they can be restored properly later.
+
+   N.B. Targets that want to use this with async support must build that
+   support on top of this (e.g., the caller still needs to add stdin to the
+   event loop).  E.g., see linux_nat_terminal_ours.  */
 
 void
 child_terminal_ours (struct target_ops *self)
index 8d4251ff763ace57e1228487fc7bc622897c891e..5a791bc594d91b8ec4983c451a9f05105c6c8eb8 100644 (file)
@@ -4595,7 +4595,9 @@ linux_nat_supports_disable_randomization (struct target_ops *self)
 
 static int async_terminal_is_ours = 1;
 
-/* target_terminal_inferior implementation.  */
+/* target_terminal_inferior implementation.
+
+   This is a wrapper around child_terminal_inferior to add async support.  */
 
 static void
 linux_nat_terminal_inferior (struct target_ops *self)
@@ -4618,7 +4620,14 @@ linux_nat_terminal_inferior (struct target_ops *self)
   set_sigint_trap ();
 }
 
-/* target_terminal_ours implementation.  */
+/* target_terminal_ours implementation.
+
+   This is a wrapper around child_terminal_ours to add async support (and
+   implement the target_terminal_ours vs target_terminal_ours_for_output
+   distinction).  child_terminal_ours is currently no different than
+   child_terminal_ours_for_output.
+   We leave target_terminal_ours_for_output alone, leaving it to
+   child_terminal_ours_for_output.  */
 
 static void
 linux_nat_terminal_ours (struct target_ops *self)