* lib/mi-support.exp (mi_gdb_start): Move call to sid_start to

beginning of function.  Fix PR gdb/191.
This commit is contained in:
Andrew Cagney 2001-08-18 21:34:28 +00:00
parent e87a02842a
commit 1759b3c3d8
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2001-08-18 Andrew Cagney <ac131313@redhat.com>
* lib/mi-support.exp (mi_gdb_start): Move call to sid_start to
beginning of function. Fix PR gdb/191.
2001-08-16 Frank Ch. Eigler <fche@redhat.com>
* config/sid.exp (sid_start): Don't warn if we cannot figure out

View File

@ -99,6 +99,12 @@ proc mi_gdb_start { } {
gdb_stop_suppressing_tests;
# Start SID.
if { [info procs sid_start] != "" } {
verbose "Spawning SID"
sid_start
}
verbose "Spawning $GDB -nw $GDBFLAGS $MIFLAGS"
if [info exists gdb_spawn_id] {
@ -170,12 +176,6 @@ proc mi_gdb_start { } {
}
}
# Finally start SID.
if { [info procs sid_start] != "" } {
verbose "Spawning SID"
sid_start
}
return 0;
}