You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consolidate logic in DebuggerController and reduce dependencies of the controller. Always create a new DebuggerController to avoid multiple controllers operating on the same underlying socket
Copy file name to clipboardExpand all lines: espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/impl/DebuggerConnection.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ public void run() {
201
201
}
202
202
// Now, begin processing packets when they start to flow from the debugger
203
203
try {
204
-
while (!Thread.currentThread().isInterrupted()) {
204
+
while (!Thread.currentThread().isInterrupted() && !controller.isClosing()) {
0 commit comments