* inferior.c (add_inferior): Move observer_notify_new_inferior
call to ... (add_inferior_silent): ... here.
This commit is contained in:
parent
25513619db
commit
a562dc8f5a
@ -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>
|
2009-05-06 Pierre Muller <muller.u-strasbg.fr>
|
||||||
Pedro Alves <pedro@codesourcery.com>
|
Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
@ -84,6 +84,8 @@ add_inferior_silent (int pid)
|
|||||||
inf->next = inferior_list;
|
inf->next = inferior_list;
|
||||||
inferior_list = inf;
|
inferior_list = inf;
|
||||||
|
|
||||||
|
observer_notify_new_inferior (pid);
|
||||||
|
|
||||||
return inf;
|
return inf;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,8 +94,6 @@ add_inferior (int pid)
|
|||||||
{
|
{
|
||||||
struct inferior *inf = add_inferior_silent (pid);
|
struct inferior *inf = add_inferior_silent (pid);
|
||||||
|
|
||||||
observer_notify_new_inferior (pid);
|
|
||||||
|
|
||||||
if (print_inferior_events)
|
if (print_inferior_events)
|
||||||
printf_unfiltered (_("[New inferior %d]\n"), pid);
|
printf_unfiltered (_("[New inferior %d]\n"), pid);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user