At class FSM, function
public void run() {
lock.lock();
synchronized(this) {
if (state != null && state != start && state != end) {
state.tick(System.currentTimeMillis());
}
}
}
ReentranLock had lock but not unlock. It make a lot of :
Locked ownable synchronizers:
- <0x00000000f55602d0> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
- <0x00000000f55793a8> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
when jstack.
Original issue reported on code.google.com by ltbinh12...@gmail.com on 12 Apr 2014 at 7:05
Original issue reported on code.google.com by
ltbinh12...@gmail.com
on 12 Apr 2014 at 7:05