How can I programmatically detect that a deadlock has occurred in a Java program?
|
3
|
|||||||||
|
|
|
The JavaSpecialist website (always worth reading) has an interesting article on this, discussing the theory and practice. |
||
|
|
|
|
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. |
|||
|
|
|
|
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 |
||
|
|
|
|
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:
|
||||
|
|
|
In case you want it to be done in run-time you can use watchdog for that. |
||
|
|
|
|
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. |
||
|
|
