mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-19 08:22:36 +08:00
2004-05-25 Andrew Cagney <cagney@gnu.org>
* target.h (struct target_ops): Add from_tty to to_create_inferior. (target_create_inferior, find_default_create_inferior): Update. * infcmd.c (run_command): Update. * wince.c (child_create_inferior): Update. * win32-nat.c (child_create_inferior): Update. * uw-thread.c (uw_thread_create_inferior): Update. * thread-db.c (thread_db_create_inferior): Update. * target.c (debug_to_create_inferior) (find_default_create_inferior): Update. (maybe_kill_then_create_inferior): Update. * sol-thread.c (sol_thread_create_inferior): Update. * remote.c (extended_remote_async_create_inferior) (extended_remote_create_inferior): Update. * remote-vx.c (vx_create_inferior): Update. * remote-st.c (st2000_create_inferior): Update. * remote-sim.c (gdbsim_create_inferior): Update. * remote-sds.c (sds_create_inferior): Update. * remote-rdp.c (remote_rdp_create_inferior): Update. * remote-rdi.c (arm_rdi_create_inferior): Update. * remote-m32r-sdi.c (m32r_create_inferior): Update. * remote-e7000.c (e7000_create_inferior): Update. * procfs.c (procfs_create_inferior): Update. * ocd.c (ocd_create_inferior): Update. * ocd.h (ocd_create_inferior): Update. * nto-procfs.c (procfs_create_inferior): Update. * monitor.c (monitor_create_inferior): Update. * lin-lwp.c (lin_lwp_create_inferior): Update. * inftarg.c (child_create_inferior): Update. * hpux-thread.c (hpux_thread_create_inferior): Update. * gnu-nat.c (gnu_create_inferior): Update.
This commit is contained in:
@ -107,9 +107,6 @@ static void extended_remote_restart (void);
|
||||
|
||||
static void extended_remote_mourn (void);
|
||||
|
||||
static void extended_remote_create_inferior (char *, char *, char **);
|
||||
static void extended_remote_async_create_inferior (char *, char *, char **);
|
||||
|
||||
static void remote_mourn_1 (struct target_ops *);
|
||||
|
||||
static void remote_send (char *buf, long sizeof_buf);
|
||||
@ -4246,7 +4243,8 @@ remote_mourn_1 (struct target_ops *target)
|
||||
we're debugging, arguments and an environment. */
|
||||
|
||||
static void
|
||||
extended_remote_create_inferior (char *exec_file, char *args, char **env)
|
||||
extended_remote_create_inferior (char *exec_file, char *args, char **env,
|
||||
int from_tty)
|
||||
{
|
||||
/* Rip out the breakpoints; we'll reinsert them after restarting
|
||||
the remote server. */
|
||||
@ -4268,7 +4266,8 @@ extended_remote_create_inferior (char *exec_file, char *args, char **env)
|
||||
|
||||
/* Async version of extended_remote_create_inferior. */
|
||||
static void
|
||||
extended_remote_async_create_inferior (char *exec_file, char *args, char **env)
|
||||
extended_remote_async_create_inferior (char *exec_file, char *args, char **env,
|
||||
int from_tty)
|
||||
{
|
||||
/* Rip out the breakpoints; we'll reinsert them after restarting
|
||||
the remote server. */
|
||||
|
Reference in New Issue
Block a user