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.
