OSDN Git Service

* inferior.c (add_inferior): Move observer_notify_new_inferior
authorpalves <palves>
Wed, 6 May 2009 17:25:16 +0000 (17:25 +0000)
committerpalves <palves>
Wed, 6 May 2009 17:25:16 +0000 (17:25 +0000)
call to ...
(add_inferior_silent): ... here.

gdb/ChangeLog
gdb/inferior.c

index ffccb85..21bf55d 100644 (file)
@@ -1,3 +1,9 @@
+2009-05-06  Pedro Alves  <pedro@codesourcery.com>
+
+       * inferior.c (add_inferior): Move observer_notify_new_inferior
+       call to ...
+       (add_inferior_silent): ... here.
+
 2009-05-06  Pierre Muller  <muller.u-strasbg.fr>
            Pedro Alves  <pedro@codesourcery.com>
 
index 745ec7c..e19a898 100644 (file)
@@ -84,6 +84,8 @@ add_inferior_silent (int pid)
   inf->next = inferior_list;
   inferior_list = inf;
 
+  observer_notify_new_inferior (pid);
+
   return inf;
 }
 
@@ -92,8 +94,6 @@ add_inferior (int pid)
 {
   struct inferior *inf = add_inferior_silent (pid);
 
-  observer_notify_new_inferior (pid);
-
   if (print_inferior_events)
     printf_unfiltered (_("[New inferior %d]\n"), pid);