Community
Participate
Working Groups
Build Identifier: When a parallel debug session terminates or runs to completion, AbstractProxyDebugClient.doShutdown is called. Any thread that enters this method can only exit when the current state of the AbstractProxyDebugClient is set to DISCONNECTED. This only occurs when another thread calls AbstractProxyDebugClient.doShutdown a second time. In PTP 5.0, #doShutdown is only called once, and thus, every time a debug session finishes, a thread is leaked. The change that caused this is in Session.shutdown, as debugger.stopDebugger is no longer called. Reproducible: Always
Created attachment 181897 [details] Patch Simple fix that just adds debugger.stopDebugger back to Session.shutdown.
Applied to HEAD. Thanks!