Remove exit_inferior_num_silent
authorTom Tromey <tom@tromey.com>
Mon, 2 Jul 2018 15:20:40 +0000 (09:20 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 3 Jul 2018 15:49:30 +0000 (09:49 -0600)
The sole caller of exit_inferior_num_silent was getting the inferior's
number to then use the number to look up the inferior again.  I think
it's better to simply not have exit_inferior_num_silent; any potential
callers that only have the inferior's number should probably be
converted to pass the inferior itself around instead.

Tested by the buildbot.

gdb/ChangeLog
2018-07-03  Tom Tromey  <tom@tromey.com>

* infrun.c (follow_exec): Use exit_inferior_silent.
* inferior.c (exit_inferior_num_silent): Remove.
* inferior.h (exit_inferior_num_silent): Don't declare.

gdb/ChangeLog
gdb/inferior.c
gdb/infrun.c

index 8ecf370e599382fa9a01b77de7b7201ee8b25624..0841703435f6a05ebbe906503c01d2af163aea7b 100644 (file)
@@ -1,3 +1,9 @@
+2018-07-03  Tom Tromey  <tom@tromey.com>
+
+       * infrun.c (follow_exec): Use exit_inferior_silent.
+       * inferior.c (exit_inferior_num_silent): Remove.
+       * inferior.h (exit_inferior_num_silent): Don't declare.
+
 2018-07-03  Tom Tromey  <tom@tromey.com>
 
        PR cli/23340:
index ab506f6aec57dab2d5869d98a30c5cdd95e22fd3..22beea58a0ccbc264613a4555741bc1778463a4d 100644 (file)
@@ -250,14 +250,6 @@ exit_inferior_silent (inferior *inf)
   exit_inferior_1 (inf, 1);
 }
 
-void
-exit_inferior_num_silent (int num)
-{
-  struct inferior *inf = find_inferior_id (num);
-
-  exit_inferior_1 (inf, 1);
-}
-
 /* See inferior.h.  */
 
 void
index 28a4391c358fdf1a5d7eeee797e693b7eb1d4b00..2eb25c03cda2fe9e03c7bf6f7bea0fb144b68fd1 100644 (file)
@@ -1190,7 +1190,7 @@ follow_exec (ptid_t ptid, char *exec_file_target)
       /* Do exit processing for the original inferior before adding
         the new inferior so we don't have two active inferiors with
         the same ptid, which can confuse find_inferior_ptid.  */
-      exit_inferior_num_silent (current_inferior ()->num);
+      exit_inferior_silent (current_inferior ());
 
       inf = add_inferior_with_spaces ();
       inf->pid = pid;