mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-5016: upping the number of states
This commit is contained in:
parent
082cc1746e
commit
73ce6cf068
2 changed files with 30 additions and 10 deletions
|
@ -334,13 +334,13 @@ public class TraceRmiTarget extends AbstractTarget {
|
|||
ActionName.STEP_OUT.equals(name) ||
|
||||
ActionName.STEP_OVER.equals(name) ||
|
||||
ActionName.STEP_SKIP.equals(name)) {
|
||||
return () -> whenState(obj, state -> state != null && state.isStopped());
|
||||
return () -> whenState(obj, state -> state != null && (state.isStopped() || state.isUnknown()));
|
||||
}
|
||||
else if (ActionName.INTERRUPT.equals(name)) {
|
||||
return () -> whenState(obj, state -> state == null || state.isRunning());
|
||||
return () -> whenState(obj, state -> state == null || state.isRunning() || state.isUnknown());
|
||||
}
|
||||
else if (ActionName.KILL.equals(name)) {
|
||||
return () -> whenState(obj, state -> state == null || state.isAlive());
|
||||
return () -> whenState(obj, state -> state == null || !state.isTerminated());
|
||||
}
|
||||
return () -> true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue