* go32-nat.c (go32_create_inferior): Use inferior_appeared, not
authorPedro Alves <palves@redhat.com>
Tue, 20 Oct 2009 16:34:00 +0000 (16:34 +0000)
committerPedro Alves <palves@redhat.com>
Tue, 20 Oct 2009 16:34:00 +0000 (16:34 +0000)
inferior_appeared_silent.
* remote-sim.c (gdbsim_create_inferior): Ditto.

gdb/ChangeLog
gdb/go32-nat.c
gdb/remote-sim.c

index 1d7922ffc6568382cf8119a72d3f057e4bab4422..2f895a088d917a553acd9ceeed60a60348c17a5c 100644 (file)
@@ -1,3 +1,9 @@
+2009-10-20  Ken Werner  <ken@linux.vnet.ibm.com>
+
+       * go32-nat.c (go32_create_inferior): Use inferior_appeared, not
+       inferior_appeared_silent.
+       * remote-sim.c (gdbsim_create_inferior): Ditto.
+
 2009-10-20  Pedro Alves  <pedro@codesourcery.com>
 
        * darwin-nat.c (cancel_breakpoint): Pass the regcache's address
index 4c30411ab2a5f56e7e464e1702b413431ed561fb..a1cce135822a423a11b711512953447c5917cb09 100644 (file)
@@ -716,7 +716,7 @@ go32_create_inferior (struct target_ops *ops, char *exec_file,
 
   inferior_ptid = pid_to_ptid (SOME_PID);
   inf = current_inferior ();
-  inferior_appeared_silent (inf, SOME_PID);
+  inferior_appeared (inf, SOME_PID);
 
   push_target (&go32_ops);
 
index 2031116b09606bc7c68340c2f4f962fe50105db2..93fdfe89a3543b1e8615c2a859c5ab6ee4d4f7f9 100644 (file)
@@ -471,7 +471,7 @@ gdbsim_create_inferior (struct target_ops *target, char *exec_file, char *args,
   sim_create_inferior (gdbsim_desc, exec_bfd, argv, env);
 
   inferior_ptid = remote_sim_ptid;
-  inferior_appeared_silent (current_inferior (), ptid_get_pid (inferior_ptid));
+  inferior_appeared (current_inferior (), ptid_get_pid (inferior_ptid));
   add_thread_silent (inferior_ptid);
 
   insert_breakpoints ();       /* Needed to get correct instruction in cache */