Is it possible at runtime to programmatically check the name of the Thread that is holding the lock of a given object?
|
2
|
|||||
|
|
|
You can only tell whether the current thread holds a normal lock ( However, if you're doing anything complicated with threading, you probably want to familiarize yourself with the java.util.concurrent packages. The There are non-programmatic methods to find the lock owners, such as signaling the JVM to issue a thread dump to stderr, that are useful to determine the cause of deadlocks. |
|||
|
|
|
|
Run jconsole. It is included in the Java SDK and is run from the command line. I'm not sure what OS you are using, but on windows you can just pass it the PID of the java process. It should help you find the thread that is causing the problem. Or, you can use a commercial profiler like YourKit or any number of other profilers. |
|||
|
|
|
|
You can, from 1.6, use JMX to do all sorts of interesting things including finding held locks. You can't get the actual object, but you do get the class and identity hash value (which is not unique). |
||
|
|
|
|
In 1.5, you can find all the threads and get each one's state, eg like this:
Thread.getState gives you info about whether the thread is BLOCKED, WAITING etc, see jdk api ThreadState |
||
|
|
|
|
You can get at the locks held by threads with reflection. This only works with java 1.6.
On each of these ThreadInfo objects there are LockInfo objects which you can use the identityHashCode on them to compare to the lock in question. |
||
|
|
