I have this code in Java:
public void doSomeThing() { synchronized (this) { doSomeThingElse(); } } public void doSome
If a thread owns the lock on this, it will go into other synchronized methods/block like hot knife in butter.
this
synchronized