mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-12 03:43:33 +08:00
* config/monitor.exp (gdb_target_monitor): Fix loop interator so
that loop eventually terminates.
This commit is contained in:
parent
856afd1791
commit
f031fc2c4b
@ -1,3 +1,8 @@
|
||||
Thu May 11 15:02:24 1995 Stu Grossman (grossman@andros.cygnus.com)
|
||||
|
||||
* config/monitor.exp (gdb_target_monitor): Fix loop interator so
|
||||
that loop eventually terminates.
|
||||
|
||||
Wed May 10 17:57:35 1995 Stu Grossman (grossman@andros.cygnus.com)
|
||||
|
||||
* config/cpu32bug.exp, config/est.exp, config/hppro.exp,
|
||||
|
@ -36,7 +36,7 @@ proc gdb_target_monitor { } {
|
||||
global baud
|
||||
|
||||
set timeout 60
|
||||
for {set i 1} {$i <= 3} {incr i -1} {
|
||||
for {set i 1} {$i <= 3} {incr i} {
|
||||
send "target $targetname $serialport\n"
|
||||
expect {
|
||||
-re "Remote target $targetname connected to.*$prompt $" {
|
||||
|
Loading…
Reference in New Issue
Block a user