diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-10-18 16:56:13 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-10-18 16:56:13 +0000 |
commit | 8621d6a94413b84d5d3353b717607194d7584943 (patch) | |
tree | 3f3e64904b3db0afa9355cc3e57e752b715b1526 /gdb/monitor.c | |
parent | 2f83a18e2abe9144bfbb72bc75a68ba64445a9e1 (diff) | |
download | gdb-8621d6a94413b84d5d3353b717607194d7584943.zip gdb-8621d6a94413b84d5d3353b717607194d7584943.tar.gz gdb-8621d6a94413b84d5d3353b717607194d7584943.tar.bz2 |
* inferior.h (start_remote): Update prototype.
* infrun.c (start_remote): Take FROM_TTY. Call
post_create_inferior.
* monitor.c (monitor_open): Update call to start_remote.
* remote-sds.c (sds_start_remote, sds_open): Likewise.
* remote.c (remote_start_remote): Likewise.
(remote_start_remote_dummy): Removed.
(remote_open): Update call to remote_start_remote. Do not call
post_create_inferior here.
Diffstat (limited to 'gdb/monitor.c')
-rw-r--r-- | gdb/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/monitor.c b/gdb/monitor.c index be807bc..80e0cdd 100644 --- a/gdb/monitor.c +++ b/gdb/monitor.c @@ -812,7 +812,7 @@ monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty) monitor_printf (current_monitor->line_term); - start_remote (); + start_remote (from_tty); } /* Close out all files and local state before this target loses |