How can I programmatically detect that a deadlock has occurred in a Java program?
|
|
You can do this programmatically using the
Obviously you should try to isolate whichever thread is performing this deadlock check - Otherwise if that thread deadlocks it won't be able to run the check! Incidentally this is what JConsole is using under the covers. |
|||||
|
|
One useful hint for investigation: If you can catch the application red handed and suspect a deadlock has occurred, go and press "Ctrl-Break" in the java.exe console window (or "Ctrl-\" on Solaris/Linux). The jvm will dump the current status and stack trace of all threads, find out dead locks and precisely describe them. It will look something like this:
|
|||||||||
|
|
You might want to consider IBM's MTRAT. Prevention is better than cure after all. The Multicore Software Development Kit also comes with a deadlock detection tool. |
|||
|
|
|
If you don't require programmatic detection you can do this via the JConsole; on the thread tab there is a "detect deadlock" button. In JDK6 this detect locks for both intrinsic monitors and Run up the JConsole via the |
|||
|
|
|
There is code here: http://www.java2s.com/Code/Java/Development-Class/PerformingdeadlockdetectionprogrammaticallywithintheapplicationusingthejavalangmanagementAPI.htm The magic happens in
This calls an API of the The code example also allows to interrupt the locks, so you can even break the deadlock. |
|||
|
|
|
tempus-fugit also implements it along with a programmatic thread dumping class. It's implemented using the mbean mechanism mentioned above and offers a drop in, out-of-the-box super duper solution. |
||||
|
|