Is it possible to see detailed JVM thread state in eclipse debugger? For example, which monitors thread has, which ones it waits for etc?
This would help to debug concurrent hangs.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not supported by the Eclipse Debugger nativly, what you want is a Profiler
and many more. You can then start the debugging in Eclipse and connect the profiler program remotely to your running JVM instance. VisualVM also offers an Eclipse launcher.
YourKit has different features regarding concurrency, for instance Monitor profiling. There you will get detailed information about the threads and their interaction.