[2/4] Don't use iterate_over_inferiors in top.c

Message ID 20190919212825.7586-3-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey Sept. 19, 2019, 9:28 p.m. UTC
  This changes top.c to use iterators rather than
iterate_over_inferiors.

gdb/ChangeLog
2019-09-19  Tom Tromey  <tom@tromey.com>

	* top.c (struct qt_args): Remove.
	(kill_or_detach): Change type.
	(quit_force): Update.
	(print_inferior_quit_actions): Rename from
	print_inferior_quit_action.  Change type.
	(quit_confirm): Update.
---
 gdb/ChangeLog |  9 ++++++
 gdb/top.c     | 90 +++++++++++++++++++++++----------------------------
 2 files changed, 49 insertions(+), 50 deletions(-)
  

Patch

diff --git a/gdb/top.c b/gdb/top.c
index 49e6daae949..276780f7219 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1548,62 +1548,55 @@  set_prompt (const char *s)
 }
 
 
-struct qt_args
-{
-  int from_tty;
-};
-
-/* Callback for iterate_over_inferiors.  Kills or detaches the given
-   inferior, depending on how we originally gained control of it.  */
+/* Kill or detach each inferior, depending on how we originally gained
+   control of it.  */
 
-static int
-kill_or_detach (struct inferior *inf, void *args)
+static void
+kill_or_detach (int from_tty)
 {
-  struct qt_args *qt = (struct qt_args *) args;
-
-  if (inf->pid == 0)
-    return 0;
-
-  thread_info *thread = any_thread_of_inferior (inf);
-  if (thread != NULL)
+  for (inferior *inf : all_inferiors_safe ())
     {
-      switch_to_thread (thread);
+      if (inf->pid == 0)
+	continue;
 
-      /* Leave core files alone.  */
-      if (target_has_execution)
+      thread_info *thread = any_thread_of_inferior (inf);
+      if (thread != NULL)
 	{
-	  if (inf->attach_flag)
-	    target_detach (inf, qt->from_tty);
-	  else
-	    target_kill ();
+	  switch_to_thread (thread);
+
+	  /* Leave core files alone.  */
+	  if (target_has_execution)
+	    {
+	      if (inf->attach_flag)
+		target_detach (inf, from_tty);
+	      else
+		target_kill ();
+	    }
 	}
     }
-
-  return 0;
 }
 
-/* Callback for iterate_over_inferiors.  Prints info about what GDB
-   will do to each inferior on a "quit".  ARG points to a struct
-   ui_out where output is to be collected.  */
+/* Print info about what GDB will do to each inferior on a "quit".  */
 
-static int
-print_inferior_quit_action (struct inferior *inf, void *arg)
+static void
+print_inferior_quit_actions (struct ui_file *stb)
 {
-  struct ui_file *stb = (struct ui_file *) arg;
-
-  if (inf->pid == 0)
-    return 0;
-
-  if (inf->attach_flag)
-    fprintf_filtered (stb,
-		      _("\tInferior %d [%s] will be detached.\n"), inf->num,
-		      target_pid_to_str (ptid_t (inf->pid)).c_str ());
-  else
-    fprintf_filtered (stb,
-		      _("\tInferior %d [%s] will be killed.\n"), inf->num,
-		      target_pid_to_str (ptid_t (inf->pid)).c_str ());
-
-  return 0;
+  for (inferior *inf : all_inferiors_safe ())
+    {
+      if (inf->pid == 0)
+	continue;
+
+      if (inf->attach_flag)
+	fprintf_filtered (stb,
+			  _("\tInferior %d [%s] will be detached.\n"),
+			  inf->num,
+			  target_pid_to_str (ptid_t (inf->pid)).c_str ());
+      else
+	fprintf_filtered (stb,
+			  _("\tInferior %d [%s] will be killed.\n"),
+			  inf->num,
+			  target_pid_to_str (ptid_t (inf->pid)).c_str ());
+    }
 }
 
 /* If necessary, make the user confirm that we should quit.  Return
@@ -1620,7 +1613,7 @@  quit_confirm (void)
   string_file stb;
 
   stb.puts (_("A debugging session is active.\n\n"));
-  iterate_over_inferiors (print_inferior_quit_action, &stb);
+  print_inferior_quit_actions (&stb);
   stb.puts (_("\nQuit anyway? "));
 
   return query ("%s", stb.c_str ());
@@ -1653,7 +1646,6 @@  void
 quit_force (int *exit_arg, int from_tty)
 {
   int exit_code = 0;
-  struct qt_args qt;
 
   undo_terminal_modifications_before_exit ();
 
@@ -1664,15 +1656,13 @@  quit_force (int *exit_arg, int from_tty)
   else if (return_child_result)
     exit_code = return_child_result_value;
 
-  qt.from_tty = from_tty;
-
   /* We want to handle any quit errors and exit regardless.  */
 
   /* Get out of tfind mode, and kill or detach all inferiors.  */
   try
     {
       disconnect_tracing ();
-      iterate_over_inferiors (kill_or_detach, &qt);
+      kill_or_detach (from_tty);
     }
   catch (const gdb_exception &ex)
     {