Skip to content

Commit

Permalink
DSPThread: cannot be suspended if program is terminated (#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciadom authored Jul 3, 2024
1 parent daf7ddc commit 2ed013b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e.debug/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Debug Adapter client for Eclipse IDE (Incubation)
Bundle-SymbolicName: org.eclipse.lsp4e.debug;singleton:=true
Bundle-Version: 0.15.8.qualifier
Bundle-Version: 0.15.9.qualifier
Bundle-Activator: org.eclipse.lsp4e.debug.DSPPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Expand Down
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 2ed013b

Please sign in to comment.