-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate behaviour of Thread.stop() on suspended threads #17818
Labels
Comments
|
Oracle JDK8 does appear to resume the thread on stop(). The exception appears to be thrown at some random time after the resume. |
On J9, we throw the exception immediately. |
Given these findings and the fact that stop() has been removed since Java 11, no action needs to be taken. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In #17806 we changed the behaviour of JVMTI
StopThread()
to no longer resume a suspended thread. We need to see if a similar change should be made to the javaThread.stop()
which is implemented seperately.The text was updated successfully, but these errors were encountered: