* inferior.c (add_inferior): Move observer_notify_new_inferior

call to ...
	(add_inferior_silent): ... here.
This commit is contained in:
Pedro Alves 2009-05-06 17:25:18 +00:00
parent 25513619db
commit a562dc8f5a
2 changed files with 8 additions and 2 deletions

View 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>

View 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);