mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 11:39:26 +08:00
Don't look at timeout unless it exists.
This commit is contained in:
@ -856,12 +856,18 @@ proc send_gdb { string } {
|
||||
proc gdb_expect { args } {
|
||||
upvar timeout timeout
|
||||
if [target_info exists gdb,timeout] {
|
||||
set oldt $timeout
|
||||
if [info exists timeout] {
|
||||
set oldt $timeout
|
||||
}
|
||||
set timeout [target_info gdb,timeout];
|
||||
}
|
||||
set code [catch {uplevel remote_expect host $args} string];
|
||||
if [info exists oldt] {
|
||||
set timeout oldt
|
||||
if [target_info exists gdb,timeout] {
|
||||
if [info exists oldt] {
|
||||
set timeout oldt
|
||||
} else {
|
||||
unset timeout
|
||||
}
|
||||
}
|
||||
|
||||
if {$code == 1} {
|
||||
|
Reference in New Issue
Block a user