diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-25 14:58:31 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-25 14:58:31 +0000 |
commit | 810efbac1ca79fb8524ef7f16ef2e0368ad21fbe (patch) | |
tree | 170a742cd591f3ffafaf544ef10124511f0009ae /gdb/remote-mips.c | |
parent | 8f4eed25c5cc916ef12edff8829bd5b6d44c735a (diff) | |
download | gdb-810efbac1ca79fb8524ef7f16ef2e0368ad21fbe.tar.gz |
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.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r-- | gdb/remote-mips.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index ea78e8b5c71..24f9378e0fa 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -114,8 +114,6 @@ static int mips_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, static void mips_files_info (struct target_ops *ignore); -static void mips_create_inferior (char *execfile, char *args, char **env); - static void mips_mourn_inferior (void); static int pmon_makeb64 (unsigned long v, char *p, int n, int *chksum); @@ -2178,7 +2176,7 @@ Give up (and stop debugging it)? ")) /* Start running on the target board. */ static void -mips_create_inferior (char *execfile, char *args, char **env) +mips_create_inferior (char *execfile, char *args, char **env, int from_tty) { CORE_ADDR entry_pt; |