Skip to content

Commit

Permalink
DSPThread: cannot be suspended if program is terminated
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciadom committed Jul 1, 2024
1 parent daf7ddc commit 8403a7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void suspend() throws DebugException {

@Override
public boolean isSuspended() {
return isSuspended;
return !isTerminated() && isSuspended;
}

@Override
Expand Down

0 comments on commit 8403a7d

Please sign in to comment.