Merge a28e713067
into 67082829da
This commit is contained in:
commit
80a370b1e9
|
@ -1889,8 +1889,11 @@ static int handle_halt(struct target *target, bool announce)
|
||||||
|
|
||||||
if (target->debug_reason == DBG_REASON_BREAKPOINT) {
|
if (target->debug_reason == DBG_REASON_BREAKPOINT) {
|
||||||
int retval;
|
int retval;
|
||||||
if (riscv_semihosting(target, &retval) != 0)
|
/* Don't try to handle semihosting before the target
|
||||||
return retval;
|
* gets successfully examined. */
|
||||||
|
if (target_was_examined(target))
|
||||||
|
if (riscv_semihosting(target, &retval) != SEMIHOSTING_NONE)
|
||||||
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
|
|
Loading…
Reference in New Issue