vote up 3 vote down star
1

Possible Duplicate:
Programmatically determine which Java thread holds a lock

Is there a standard way, preferably simple, in Java to find out who is causing blocking when trying to call a method on a synchronized object?

I checked Object interface, only the well-known .wait(), .notify() etc methods. I guess such a method would look something like this:

Thread whoThe_IsHoldingTheSynchronizationLockOn(Object object)

Thanks, -j.n.

flag
duplicate: stackoverflow.com/questions/50561/… – Zed Oct 17 at 18:44

closed as exact duplicate by Zed, Tom Hawtin - tackline, Avi, 01, starblue Oct 17 at 19:19

2 Answers

vote up 2 vote down check

You can get the information through java.lang.management. I wouldn't want to see it used other than for debugging and monitoring.

A few years ago I wrote a weblog entry which uses that API to detect cases where EventQueue.invokeAndWait is likely to deadlock occasionally.

link|flag
Great! I found java.lang.management.ThreadInfo. Docu says it can tell me: > <li>The ID of the thread that owns the object that the thread is blocked.</li> Debugging and monitoring only, I promise. – Jonas N Oct 17 at 18:59
You should "accept" the answer is it's useful and correct. That gives credit to Tom. – Jonathan Feinberg Oct 17 at 19:00
Seems I can't upvote (unregistered). Anyway, thanks! – Jonas N Oct 17 at 19:01
Got it now, thanks JF. – Jonas N Oct 17 at 19:02
vote up 0 vote down

If you don't mind changing the Code, you could use the RentrantLock from the java.util.concurrent.locks package. This Class can be used like synchronized and has a method getOwner() that returns the holding Thread.

link|flag
I'm afraid I would mind. I wanted to use a whoThe_IsHoldingTheSynchronizationLockOn() because I'm lazy :-). I considered writing a SYNCHRONIZE(Callback callback) and wrapping all the relevant code...but I have used synchronize in very many places. – Jonas N Oct 17 at 18:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.