-
Notifications
You must be signed in to change notification settings - Fork 3
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
Multiple threads own the same monitor on Oracle JDK 8 via JVM factory #81
Comments
|
|
There seem to be a pattern here - one thread has acquired the monitor somewhere deep in stacktrace while the other have it on current stackframe. While I have no idea why would it be so, retry might help. |
I may be wrong but jstack like Rather first it gets a list of threads then gets a snapshot of the the stack of each of those threads one by one
so that could explain the above - one thread that had the lock now no longer does, and so a different thread obtained it by the time the stack for that thread was obtained. |
@jtnord, that is true. Dumpling have a long history of massaging the thread snapshot (or a |
The text was updated successfully, but these errors were encountered: