diff options
author | Pedro Alves <palves@redhat.com> | 2009-10-20 16:34:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-10-20 16:34:00 +0000 |
commit | 20176d8fbf4a9862f0347038013c6807e90f5881 (patch) | |
tree | 55c1622f945f63f0a19f4af136b81a5b722eea21 /gdb/go32-nat.c | |
parent | 40625c9de32122a71ddc72826e6c5f43eae175cd (diff) | |
download | gdb-20176d8fbf4a9862f0347038013c6807e90f5881.zip gdb-20176d8fbf4a9862f0347038013c6807e90f5881.tar.gz gdb-20176d8fbf4a9862f0347038013c6807e90f5881.tar.bz2 |
* go32-nat.c (go32_create_inferior): Use inferior_appeared, not
inferior_appeared_silent.
* remote-sim.c (gdbsim_create_inferior): Ditto.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 4c30411..a1cce13 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -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); |