forked from Imagelibrary/binutils-gdb
* infcmd.c: Include "observer.h".
(post_create_inferior): New function. (run_command_1): Call it. Also call proceed. * inferior.h (post_create_inferior): New prototype. * Makefile.in (infcmd.o): Update. * gnu-nat.c (gnu_create_inferior): Don't call proceed. * go32-nat.c (go32_create_inferior): Likewise. * nto-procfs.c (procfs_create_inferior): Likewise. * procfs.c (procfs_create_inferior): Likewise. * remote-sim.c (gdbsim_create_inferior): Likewise. * remote.c (extended_remote_create_inferior) (extended_remote_async_create_inferior): Likewise. * win32-nat.c (win32_create_inferior): Likewise. * wince.c (child_create_inferior): Likewise. * monitor.c (monitor_create_inferior): Don't call proceed. Set the PC manually. * ocd.c (ocd_create_inferior): Likewise. * remote-e7000.c (e7000_create_inferior): Likewise. * remote-m32r-sdi.c (m32r_create_inferior): Likewise. * remote-mips.c (mips_create_inferior): Likewise. * remote-rdp.c (remote_rdp_create_inferior): Likewise. * remote-sds.c (sds_create_inferior): Likewise. * remote-st.c (st2000_create_inferior): Likewise. * inf-ptrace.c (inf_ptrace_create_inferior): Don't call proceed or observer_notify_inferior_created. * inf-ttrace.c (inf_ttrace_create_inferior): Likewise. * inftarg.c (child_create_inferior): Likewise.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/* Remote debugging interface for boot monitors, for GDB.
|
||||
|
||||
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
||||
1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
1999, 2000, 2001, 2002, 2006 Free Software Foundation, Inc.
|
||||
|
||||
Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
|
||||
Resurrected from the ashes by Stu Grossman.
|
||||
@@ -2008,8 +2008,7 @@ monitor_kill (void)
|
||||
return; /* ignore attempts to kill target system */
|
||||
}
|
||||
|
||||
/* All we actually do is set the PC to the start address of exec_bfd, and start
|
||||
the program at that point. */
|
||||
/* All we actually do is set the PC to the start address of exec_bfd. */
|
||||
|
||||
static void
|
||||
monitor_create_inferior (char *exec_file, char *args, char **env,
|
||||
@@ -2020,7 +2019,7 @@ monitor_create_inferior (char *exec_file, char *args, char **env,
|
||||
|
||||
first_time = 1;
|
||||
clear_proceed_status ();
|
||||
proceed (bfd_get_start_address (exec_bfd), TARGET_SIGNAL_0, 0);
|
||||
write_pc (bfd_get_start_address (exec_bfd));
|
||||
}
|
||||
|
||||
/* Clean up when a program exits.
|
||||
|
||||
Reference in New Issue
Block a user